/ Published in: PHP
Adds the function "lcfirst" if it does not exist (it was first added in PHP 5.3.0) while its counterpart, "ucfirst" was added in PHP 4.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
{ function lcfirst($str) { { throw new Exception("Subject must be of type string"); } return $str; } }