Loading...
More PHP Posts
<?php/** @param string $file Filepath* @param string $query Needed information (0 = width, 1 = height, 2 = mime-type)* @return string Fileinfo*/function getImageinfo($file, $query) {if (!realpath($file)) {$file = $_SERVER["DOCUMENT_ROOT"] . $file;}$image = getimagesize($file);return $image[$query];}?>
<?phpfunction getRandomId($min = NULL, $max = NULL) {if (is_numeric($min) && is_numeric($max)) {return mt_rand($min, $max);}else {return mt_rand();}}?>
<?php$array = array('fruit1' => 'apple','fruit2' => 'orange','fruit3' => 'grape','fruit4' => 'apple','fruit5' => 'apple');// this cycle echoes all associative array// key where value equals "apple"while ($fruit_name = current($array)) {if ($fruit_name == 'apple') {echo key($array), "\n";}next($array);}?>
<?phpfunction uniqidReal($length = 8) {// uniqid gives 8 chars, can be changedif (function_exists("random_bytes")) {$bytes = random_bytes(ceil($length / 2));} elseif (function_exists("openssl_random_pseudo_bytes")) {$bytes = openssl_random_pseudo_bytes(ceil($length / 2));} else {throw new Exception("no cryptographically secure random function available");}return substr(bin2hex($bytes), 0, $length);}/*//for testingfor($i = 0; $i < 10; $i++) {echo "<br>";echo uniqidReal();}*/?>
<?phpheader('Content-Type:text/html');$jsonData = json_decode(file_get_contents("names.json"));$namesArray = array();foreach($jsonData as $data) {$namesArray[] = $data;}for($i = 0; $i < 64000; $i++) {echo 'D.add_edge("'. $namesArray[array_rand($namesArray)] . '", "' . $namesArray[array_rand($namesArray)]. '")';echo "<br>";}?>
<?php$im = imagecreatefrompng('example.png');$size = min(imagesx($im), imagesy($im));$im2 = imagecrop($im, ['x' => 0, 'y' => 0, 'width' => $size, 'height' => $size]);if ($im2 !== FALSE) {imagepng($im2, 'example-cropped.png');imagedestroy($im2);}imagedestroy($im);?>