Skip to content

Instantly share code, notes, and snippets.

@blar
Created January 25, 2016 20:28
Show Gist options
  • Save blar/fca97d71e2e478758f46 to your computer and use it in GitHub Desktop.
Save blar/fca97d71e2e478758f46 to your computer and use it in GitHub Desktop.
realpath ohne strict_types
<?php
declare(strict_types = 0);
$path = 'foobar';
var_dump($path);
$path = realpath($path);
var_dump($path);
$path = realpath($path);
var_dump($path);
string(6) "foobar"
bool(false)
string(1) "/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment