Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created November 11, 2014 12:31
Show Gist options
  • Save NandoKstroNet/ca8c588f61f6c50798ca to your computer and use it in GitHub Desktop.
Save NandoKstroNet/ca8c588f61f6c50798ca to your computer and use it in GitHub Desktop.
<?php
$file = '/home/dllopes/www/teste.php';
$ext = strrchr($file, '.');
$countChar = strlen(str_replace('.', '', $ext));
if($countChar == 4) print 'Extensão possui 4 caracteres além do "."';
if($countChar == 3) print 'Extensão possui 3 caracteres além do "."';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment