hhvm
hhvm copied to clipboard
fix file_exists relative path bug
a.txt real location is a/a.txt
file_exists("a/b/../a.txt");
this code return value is false ,but hhvm process relative path,so this result is true,diff php,and then old way process relative path performance have problem,this modify way performance is improve 40%
replay case:
#3148