Skip to content

Instantly share code, notes, and snippets.

@suntrop
Created January 12, 2019 11:58
Show Gist options
  • Save suntrop/cc842871c5e95b64aa2d75e3aa3b2656 to your computer and use it in GitHub Desktop.
Save suntrop/cc842871c5e95b64aa2d75e3aa3b2656 to your computer and use it in GitHub Desktop.
<?php
class Hello {
var $abc = '';
/**
* @param string $onetwo
*
* @return bool
*/
public function test($greetings = 'Hi', $name = null)
{
$url = "%09%09%24url+%3D+%27hier+steht+meine+lange+Url%27%3B";
//$url = strpos('sdf', 'sd');
echo "Test test" . $greetings. $name . $url;
return true;
}
}
function hello () {
echo 'Test';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment