anytizer/capitalizer.php

There is no license information available for the latest version (dev-master) of this package.

Capitalize a word

dev-master 2023-10-03 05:14 UTC

This package is auto-updated.

Last update: 2024-09-03 07:09:30 UTC


README

Capitalizes most frequently used short codes.

Installation

composer global require anytizer/capitalizer.php:dev-master
composer require anytizer/capitalizer.php:dev-master

Usage Example

<?php
require_once("vendor/autoload.php");

use anytizer\capitalizer;

$raw_word = "api_key";
$capitalizer = new capitalizer();
$word = $capitalizer->capitalize($raw_word);

echo $word;

You should expect API Key as output. See a complete list of capitalizable words in words.csv.

Output Examples

  • IP Address for "ip_address"
  • User ID for "user id"