Skip to content

Instantly share code, notes, and snippets.

@mistic100
Last active January 2, 2016 20:29
Show Gist options
  • Save mistic100/8356934 to your computer and use it in GitHub Desktop.
Save mistic100/8356934 to your computer and use it in GitHub Desktop.
[PHP] Check if a file exists but is not dir
<?php
/**
* Check if a file exists but is not dir
*
* @param file
* @return bool
*/
function file_exists_strict($file)
{
return file_exists($file) && !is_dir($file);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment