<?php$locate= 'http://1.bp.blogspot.com/-AJ8fH5oCDfU/WGOunkWirwI/AAAAAAAHZV0/BtNjt5m8HsA/s300-p/Tonari.no.Seki-kun.full.1270629.jpg';$image = imagecreatefromjpeg("$locate");if ($image) {echo '<PRE STYLE="font: 1px/1px Courier New;">';$asciichars = array("@", "#", "+", "*", ";", ":", ",", ".", "`", " ");$width = imagesx($image);$height = imagesy($image);for($y = 0; $y < $height; ++$y) {for($x = 0; $x < $width; ++$x) {$thiscol = imagecolorat($image, $x, $y);$rgb = imagecolorsforindex($image, $thiscol);$brightness = $rgb['red'] + $rgb['green'] + $rgb['blue'];$brightness = round($brightness / 85);$char = $asciichars[$brightness];echo $char;}echo "\n";}echo '</PRE>';}?>
Chỉnh sửa thời gian trong date format
Để thêm thời gian một mốc thời gian có sẵn làm theo mẫu bên dưới: // set timezone date_default_timezone_set('GMT'); //set an date and time to work with $start = '2014-06-01 14:00:00'; //display the converted time echo date('Y-m-d H:i',strtotime('+1 hour +20 minutes',strtotime($start))); Các loại thời gian có thể chỉnh sửa: +1 day = Thêm 1 ngày +1 hour = Thêm 1 giờ +10 minutes = Thêm 10 phút +10 seconds = Thêm 10 giây Có thể đổi thành + thành -
0 Nhận xét