PHP bunu eğer henüz hiç iyi bir çözüm gibi görünüyor gibi ben merak ediyorum:
p($i)
ve yazdıracaktır
$i is 5
ve
p(1 + 2)
basacaktır
1 + 2 is 3
ve
p($i * 2) => $i * 2 is 10
p(3 * factorial(3)) => 3 * factorial(3) is 18
C ve Ruby both can do it... in C, it can be done by stringification, ve in Ruby, there is a solution using p{'i'}
or p{'1 + 2'}
(by passing the block with the binding over, to do an eval)... I wonder in PHP, is it possible too?