View gist:9997388
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
void hi(int a, float b) { | |
printf("a = %d\n", a); | |
printf("b = %f\n", b); | |
} | |
int main(void) { | |
void (*hello)(float,int) = (void(*)(float,int))hi; | |
hi(1,2); |
View PHP gotcha 2013
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$o1 = new stdclass($a=8); | |
var_dump($a); // Notice: Undefined variable: a | |
$o2 = new Datetime($b='now'); | |
var_dump($b); // string "now" |
View tokenize.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
if (!isset($_SERVER['argv'][1])) { | |
echo "Usage: {$_SERVER['argv'][0]} <filename>" . PHP_EOL; | |
exit; | |
} | |
$tokens = token_get_all(file_get_contents($_SERVER['argv'][1])); | |
foreach ($tokens as $token) { | |
if (is_integer($token[0])) { |