检查查询是否为空或空字符串

时间:2013-03-19 11:18:14

标签: php jquery zend-framework

我正在我的网站上进行搜索功能,我正在进行下一个和上一个功能,每页显​​示16个结果。我必须检查我的查询是否为null或空字符串,但我不擅长if语句,我猜我必须做一个?我正在使用AJAX作为next和previous的click函数,但是在PHP中进行所有计算。我想要做第一个查询,我必须使用if语句?这是我到目前为止...我不知道检查哪个查询是null或空字符串。

这是我正在努力的功能。我期待创建一个if语句来检查查询是否为null但不确定如何?任何帮助将不胜感激:

public function keywordAction() {
        $this->view->layout()->disableLayout();
        $this->_helper->viewRenderer->setNoRender(TRUE);
        $session = new Zend_Session_Namespace("keyword");
        $search = "";
        if(isset($session->search)) {
            $search = $session->search;
        }
        if {


        }
   }

这是我对该函数的AJAX代码:

$(".paginator").click(function(){
        var action = $(this).attr("action");
        var page = $("#pageNo").val();
        var pageint = parseInt(page);
        var request = $.ajax({
            url : "/support/keyword/",
            dataType : "JSON",
            type : "POST",
            data : {
                action : action,
                page : pageint,
                itemsperpage : parseInt($("#itemsperpage").val())
            }
        });

        request.done(function(response){
            if(response.error != undefined) {
                window.location = "/";
            }
            if(response.results != undefined) {
                $("#output").html(response.results);
            }
            if(response.disable != undefined) {
                if(/1/i.test(response.disable)) {
                    $(this).hide();
                }
            }
            if(response.undisable != undefined) {
                if(/1/i.test(response.undisable)) {
                    if(/next/i.test(action)) {
                        $("#previous").show();
                    } else {
                        $("#next").show();
                    }
                }
            }
            if(response.resultsstring != undefined) {
                $("#resultsstring").html(response.resultsstring);
            }
        });

    });

1 个答案:

答案 0 :(得分:0)

尝试类似

的内容
<?php 
    if(!empty($search)) {

    }
 ?>