PHP 8.5.0 Alpha 1 available for testing

Voting

: five plus four?
(Example: nine)

The Note You're Voting On

phpnet at katylavallee dot com
16 years ago
Easiest work-around I've found for <5.3:
<?php

$string
= "CamelCase"
$string{0} = strtolower($string{0})
echo
$string; // outputs camelCase

?>

<< Back to user notes page

To Top