Home Backend Development PHP Tutorial php 正则有关问题

php 正则有关问题

Jun 13, 2016 pm 01:37 PM
quot tmp

php 正则问题
$url='http://www.scjj.gov.cn:8088/xxcx/jsp/searchAction!getDzjk.action';
用正则,取出
www.scjj.gov.cn:8088。。
怎么写。。

------解决方案--------------------

PHP code
$url='http://www.scjj.gov.cn:8088/xxcx/jsp/searchAction!getDzjk.action';
preg_match_all( "/////(*?)///", $str, $tmp);
var_dump($tmp);
<br><font color="#e78608">------解决方案--------------------</font><br>
Copy after login
PHP code

preg_match("/\/\/(.*?)\//",$str,$tmp);
var_dump($tmp);
<br><font color="#e78608">------解决方案--------------------</font><br>
Copy after login
探讨
引用:
PHP code


preg_match("/\/\/(.*?)\//",$str,$tmp);
var_dump($tmp);

(.*?)怎么不会到www.scjj.gov.cn:8088/xxcx和www.scjj.gov.cn:8088/xxcx/jsp这个的?
Statement of this Website
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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The cleaning principle of /tmp/ folder in Linux system and the role of tmp file The cleaning principle of /tmp/ folder in Linux system and the role of tmp file Dec 21, 2023 pm 05:36 PM

The cleaning principle of /tmp/ folder in Linux system and the role of tmp file

What does tmp mean in linux What does tmp mean in linux Mar 10, 2023 am 09:26 AM

What does tmp mean in linux

How to access and clean junk files in /tmp directory in CentOS 7? How to access and clean junk files in /tmp directory in CentOS 7? Dec 27, 2023 pm 09:10 PM

How to access and clean junk files in /tmp directory in CentOS 7?

What file is TmP? What file is TmP? Dec 25, 2023 pm 03:39 PM

What file is TmP?

What file is tmp What file is tmp Feb 22, 2023 pm 02:35 PM

What file is tmp

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决

What kind of file is tmp? Can it be deleted? What kind of file is tmp? Can it be deleted? Feb 27, 2023 am 10:33 AM

What kind of file is tmp? Can it be deleted?

不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没有关问题 不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没有关问题 Jun 13, 2016 am 10:15 AM

不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没有关问题

See all articles