[PHP] hasPrefix 구현하기

2021. 4. 13. 11:22개발자료/Web


반응형

##

$strUrl = "https://www.test.com";
if(substr($strUrl, 0, 6) === 'https:'){
	echo "hasPrefix https";
}

 

반응형

'개발자료 > Web' 카테고리의 다른 글

[Javascript] XPath 이용하기  (0) 2021.12.13
HTTP Header  (0) 2021.04.30
[Javascript] UIWebView, WKWebView 구분  (0) 2020.11.04
[PHP] .htaccess error_reporting  (0) 2020.07.20
[PHP] .htaccess short_open_tag 설정  (0) 2020.07.16