http://www.learncomputer.com/10-useful-php-code-snippets/
- function getRemoteIPAddress() {
- $ip = $_SERVER['REMOTE_ADDR'];
- return $ip;
- }
제조대码
- function getRealIPAddress() {
- if (!empty($_SERVER['HTTP_CLIENT_IP'])) { // 공유 인터넷에서 IP 확인
- $ip = $_SERVER ['HTTP_CLIENT_IP'];
- } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { // IP가 프록시에서 전달되었는지 확인하기 위해
- $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
- } else {
- $ip = $_SERVER['REMOTE_ADDR'];
- }
- return $ip;
- }
复system代码
- $query = "1=1인 mytable에서 UNIX_TIMESTAMP(date_field)를 mydate로 선택합니다.";
- $records = mysql_query($query) 또는 die(mysql_error());
- while($row = mysql_fetch_array($records)) {
- echo $row;
- }
复system代码
- function checkDateFormat($date) {
- // 날짜 형식과 일치
- if (preg_match("/^([0-9]{4}) -([0-9]{2})-([0-9]{2})$/", $date, $parts)) {
- // 날짜가 유효한지 확인
- if (checkdate($parts[2], $parts[3], $parts[1])) {
- return true;
- } else {
- return false;
- }
- } else {
- false 반환;
- }
- }
复代码
- header('위치: http://www.oschina.net/project/zh');
复主代码
- $to = "someone@oschina.net";
- $subject = "여기에 제목";
- $body = "여기에서 메시지 본문을 사용할 수 있습니다. 예: HTML도 마찬가지입니다.
굵은 글씨 ";
- $headers = "보낸 사람: Yourn";
- $headers .= "답장: info@yoursite.comrn" ;
- $headers .= "반환 경로: info@yoursite.comrn";
- $headers .= "X-Mailer: PHPn";
- $headers .= 'MIME 버전: 1.0' . "n";
- $headers .= '콘텐츠 유형: 텍스트/html; charset=iso-8859-1' . "rn";
- mail($to, $subject, $body, $headers);
复代码
- function base64url_encode($plainText) {
- $base64 = base64_encode($plainText);
- $base64url = strtr($base64, ' /=', '-_ ,');
- return $base64url;
- }
-
- function base64url_decode($plainText) {
- $base64url = strtr($plainText, '-_,', ' /=') ;
- $base64 = base64_decode($base64url);
- return $base64;
- }
复主代码
- $json_data = array ('id'=>1,'name'=>"John",'country'=>'Canada',"work"=> ;array("Google","Oracle"));
- echo json_encode($json_data);
-
- $json_string='{"id":1,"name":"John","country ":"Canada","work":["Google","Oracle"]} ';
- $obj=json_decode($json_string);
-
- // 구문 분석된 데이터 인쇄
- echo $obj->이름; //John 표시
- echo $obj->work[0]; //Google 표시
复代码
- $useragent = $_SERVER ['HTTP_USER_AGENT'];
- echo "사용자 에이전트는: " . $useragent;
复代码
- $lines = file('http://www.oschina.net/home/about');
- foreach($lines as $line_num => $line) {
- // 각 줄을 반복하고 줄 번호를 앞에 추가합니다
- echo "Line #{$line_num} : " . htmlspecialchars($line) . "
n";
- }
复代码
- $now = 날짜('Y-m-d-G');
- $now = strftime("%Y-%m-%d-%H", strtotime("$ 지금 -8시간"));
复代码
|