Skip to content

Instantly share code, notes, and snippets.

@modos
Created August 6, 2022 20:30
Show Gist options
  • Save modos/ee62b5e8dfea91259aec0af4a0c6cd6b to your computer and use it in GitHub Desktop.
Save modos/ee62b5e8dfea91259aec0af4a0c6cd6b to your computer and use it in GitHub Desktop.
camelCase
<?php
$file = fopen('input.txt', 'r');
$line = fgets($file);
$line = trim($line);
$line = strtolower($line);
$line = ucwords($line, ' ');
$line = str_replace(' ', '', $line);
$line = lcfirst($line);
echo $line;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment