/    Sign up×
Community /Pin to ProfileBookmark

Fun with PHP

Silliness that passed the last quarter hour of work today:

[code=php]
<?php
class foo {
public function foo(&$foo) {
$foo = create_function(
‘$foo’,
‘echo “Hello, $foo.”;’
);
}
}
new foo($foo);
$foo(‘foo’);
[/code]

to post a comment
PHP

3 Comments(s)

Copy linkTweet thisAlerts:
@NogDogauthorMay 13.2013 — version 1.1:
[code=php]
<?php
class foo {
private function __construct() {}
public static function foo(&$foo) {
$foo = create_function('$foo','echo "Hello, $foo.";');
}
}
foo::foo($foo);$foo('foo');
[/code]
Copy linkTweet thisAlerts:
@NogDogauthorMay 15.2013 — And for another layer of absurdity:

/foo:
[code=php]
<?php
class foo {
private function __construct() {}
public static function foo(&$foo) {
$foo = create_function('$foo','echo "Hello, $foo.";');
}
}
[/code]

/foo.php:
[code=php]
require 'foo';foo::foo($foo);$foo('foo');
[/code]
Copy linkTweet thisAlerts:
@PrincessCupcakeMay 17.2013 — lol glad you had fun ?
×

Success!

Help @NogDog spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.7,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...