Home  >  Article  >  Backend Development  >  PHP custom extension acquisition function example

PHP custom extension acquisition function example

巴扎黑
巴扎黑Original
2016-12-22 14:31:391193browse

The example in this article describes the PHP custom extension acquisition function. Share it with everyone for your reference, the details are as follows:

<?php
$url = "http://www.abc.com/abc/de/fg.php?id=1";
//这个是自己写的
function getUrl($url) {
  $date = explode(&#39;?&#39;, $url);
  $date = basename($date[0]);
  $date = explode(&#39;.&#39;, $date);
  return $date[1];
}
var_dump(getUrl($url));
//下面两个是网上弄的
function getExt($url){
  $arr = parse_url($url);
  $file = basename($arr[&#39;path&#39;]);
  $ext = explode(".",$file);
  return $ext[1];
}
var_dump(getExt($url));
function getName($url) {
  $w_param = pathinfo($url);
  $str = $w_param[&#39;extension&#39;];
  list($type, $vars) = explode(&#39;?&#39;,$str);
  return $type;
}
echo &#39;start3&#39;.date("Y-m-d H:i:s");


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn