일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- php
- Laravel
- 경영
- JSON
- Forms
- curl
- Arrays
- JavaScript
- Linux
- Regex
- 전략
- 웹하드추천
- OOP
- 무료다운로드쿠폰
- function
- UTF-8
- 웹하드순위
- string
- HTML
- MySQL
- post
- jquery
- composer-php
- Session
- date
- variables
- file-upload
- Ajax
- Apache
- Today
- Total
목록string (9)
개발! 딱 깔끔하고 센스있게!
PHP 프로그램을 개발하고 있습니다. 나는 날짜 변수와 문자열 변수를 비교해야 합니다.나는 strcmp 해봤는데 소용이 없다...건의감사합니다. 대답 날짜를 비교하는 가장 좋은 방법은 시간 스탬프입니다: $string = '11/05/2016';//string variable $date = date('Y-m-d',time());//date variable $time1 = strtotime($string); $time2 = strtotime($date); if($time1>$time2){ //do this } else{ //do this } 도움이 됐으면 좋겠어요.
문자열 5개 전 단어를 얻는 가장 좋은 방법은 무엇입니까?어떻게 문자열을 두 문자열로 나누면 첫 번째 키의 문자열은 원시 문자열의 전 5개의 단어를 가지고 있으며 둘째 키의 문자열은 원시 문자열의 나머지 부분으로 구성됩니다 대답 $pieces = explode(" ", $inputstring); $first_part = implode(" ", array_splice($pieces, 0, 5)); $other_part = implode(" ", array_splice($pieces, 5)); explode 는 원본 문자열을 단어의 배열로 나누고, arrayu splice 는 이 단어의 특정 범위를 허용하여 이 범위를 단일 문자열로 구성합니다.
php 에서 문자열 변환과 strval 은 어떤 차이가 있습니까? strval($value); (string)$value; 대답 http://www.php.net/manual/en/en/language.typs.string.php 35;language.types.string.casting A value can be converted to a string using the (string) cast or the strval() function. 내가 보기에는 똑같다.
php 에서 문자열 끝의 세 글자를 어떻게 삭제합니까?"abcabc abcabcab"가 "abcabc"! 대답 하면: echo substr($string, 0, -3); Substr 문서에서 말한 것처럼 strlin을 사용할 필요가 없습니다: If length is given and is negative, then that many characters will be omitted from the end of string
파일 이름에서 확장자를 제거하고 싶습니다. 파일명을 얻습니다. -예를 들어 file.xml -> file, immage.jpeg -> image, test.march.txt-> test.march, 등등등입니다. 그래서 이 함수를 썼어요. function strip_extension($filename) { $dotpos = strrpos($filename, "."); if ($dotpos === false) { $result = $filename; } else { $result = substr($filename,0,$dotpos); } return $result; } 빈 문자열을 되돌립니다. 내가 뭘 잘못했는지 모르겠어? 대답 pathinfo 를 찾고 있는 것 같아요.수첩에서: 결과: /www/htdoc..