Skip to content

Instantly share code, notes, and snippets.

@ircmaxell
ircmaxell / test.php
Last active August 29, 2015 14:14
A simple functional experimental language in PHP
<?php
$code = "
= print (-> #text (
echo (chr text)
print
))
@ircmaxell
ircmaxell / gist:1966809
Created March 3, 2012 16:03
Scalar Casting Patch, Version 3
Index: Zend/zend.h
===================================================================
--- Zend/zend.h (revision 323850)
+++ Zend/zend.h (working copy)
@@ -486,6 +486,10 @@
union _zend_function *__call;
union _zend_function *__callstatic;
union _zend_function *__tostring;
+ union _zend_function *__toint;
+ union _zend_function *__tofloat;