<?php namespace App\Function; function str_repeat() { return __FUNCTION__; } $filter = 'str_repeat'; echo $filter('a', 10) . PHP_EOL; $filter = '\str_repeat'; echo $filter('a', 10) . PHP_EOL; $filter = 'App\Function\str_repeat'; echo $filter('a', 10) . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.