You are here

function startswith in Exif 7

1 call to startswith()
exif_admin_settings in ./exif.admin.inc
Just some help page. Gives you an overview over the available tags

File

./exif.admin.inc, line 100

Code

function startswith($hay, $needle) {
  return substr($hay, 0, strlen($needle)) === $needle;
}