Skip to content

Instantly share code, notes, and snippets.

@iRynoh
Created March 19, 2019 16:35
Show Gist options
  • Save iRynoh/1be06dce6149a6f9ff19955799113437 to your computer and use it in GitHub Desktop.
Save iRynoh/1be06dce6149a6f9ff19955799113437 to your computer and use it in GitHub Desktop.
String
<?php
function checkIfFirstCharIsUpperCase(string $string)
{
return preg_match('/[A-Z]$/', $string[0]) == true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment