Home >Backend Development >PHP Tutorial >if判断 - php解析html,可能出现的情况很多,除了不断写if...if...if...有没有更好的处理方式?

if判断 - php解析html,可能出现的情况很多,除了不断写if...if...if...有没有更好的处理方式?

WBOY
WBOYOriginal
2016-06-06 20:21:141097browse

php解析html,可能出现的情况很多,除了不断写if...if...if...有没有更好的处理方式?

回复内容:

php解析html,可能出现的情况很多,除了不断写if...if...if...有没有更好的处理方式?

用PHP现成的HTML DOM操作库吧,比如Simple-HTML-DOM
http://simplehtmldom.sourceforge.net/manual.htm

额。。。switch语句也可以。。

switch
http://www.w3school.com.cn/php/php_switch.asp

也许能找到找不需要if的逻辑关系咯。或者数据经常某种处理就不要if了。

比如点击按钮移除某个元素

<code><!--HTML-->
<button class="btn" flag="btn1" id="btn">移除1</button>
<button class="btn" flag="btn2" id="btnbtn">移除2</button>

<div id="btn1">我是1</div>
<div id="btn2">我是2</div>

/*js*/
//if写法
jQuery(".btn").click(function(){
    if(jQuery(this).attr("id")==="btn"){
        jQuery("#btn1").remove();
    }
    if(jQuery(this).attr("id")==="btnbtn"){
        jQuery("#btn2").remove();
    }
})

//也许我们能找到类似这样的关系了?
jQuery(".btn").click(function(){
    jQuery("#"+jQuery(this).attr("flag")).remove();
})
</code>

switch case 语句

重新改以下答案.

  1. 面相对象
    面相对象里面的核心概念是接口, 通过合理的抽象, 可以让if减少.

  2. 模式匹配
    还可以使用模式匹配, switch case本身就是一种模式匹配

phpquery好啊,为什么不用

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