谁能帮我做要求工作?

Posted

技术标签:

【中文标题】谁能帮我做要求工作?【英文标题】:Can anyone help me to make require working? 【发布时间】:2015-07-11 20:02:31 【问题描述】:

所以我有 2 个 php 文件,一个是调用函数,另一个是实现函数。

在实现我调用的函数的那个​​中 require("shares.php") - share.php 是调用函数的文件

问题是,它没有看到函数,所以我检查了函数是否存在,不,它们不存在((。

请看这里。

shares.php

    <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> 
<html xmlns='http://www.w3.org/1999/xhtml'> 
<head> 
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' /> 
<title>Shares</title> 
</head> 

<body> 
<?php

if (function_exists('get_contents')) 
 
    if(function_exists('print_contents'))
    
        $data = get_contents();
        print_contents($data);
    


else

    print("Not Found");

?>
</body> 
</html> 

这里是函数的实现。

       if(isset($_GET['share']))
        
            $conn = db_connect();
            if($_GET["newSorting"] == 1)
            

                 $shares = get_shareSearch($conn, "company");

            

            if($_GET["newSorting"] == 2)
            

                $shares = get_shareSearch($conn, "rate");

            
            if($_GET["newSorting"] == 3)
            

                 $shares = get_shareSearch($conn, "issue_date");

            

            db_disconnect($conn);
            $contents = array('shares' => $shares);
            return $contents;
        

        else
        
            $conn = db_connect();
            $shares = get_share($conn);
            db_disconnect($conn);
            $contents = array('shares' => $shares);
            return $contents;
        

    

    function print_contents($contents) 
    

        if(count($contents['shares']) == 0)
        
            echo "<script type = 'text/javascript'>alert('Sorry but share is not found! Q_Q');</script>";

        
        else
        
        ?>    
            <table>
                <tr>
                    <th><a href="share-company-links.php?companySort=true">Company Name</a></th>
                    <th><a href="share-company-links.php?rateSort=true">Rate</a></th>
                    <th><a href="share-company-links.php?issueSort=true">Issue date</a></th>
                </tr>
        <?php

        foreach ($contents['shares'] as $share) 
        
            print "<tr>";
            $identifier = urlencode($share['COMPANY']);
            print "<td><a href='share-details.php?company=$identifier'>$share['COMPANY']</a></td>";
            print "<td>$share['RATE']</td>";

            $issue_date = $share['ISSUE_DATE'];
            $issue_date = $issue_date === NULL ? "&lt; not available &gt;" : $issue_date;
            print "<td>$issue_date</td>";
            print "</tr>";
        
        ?>
            </table>
        <?php
        
    

    require_once("shares.php");

    ?>

结果将是未找到

【问题讨论】:

请注意,require_onceprint 不是函数,因此它们不需要参数。 官方文档中的@PHPglue 我看到他们正在使用() 【参考方案1】:

使用这些函数的文件(share.php)应该require另一个文件,而不是相反。所以,在股票中

<body> 
<?php

require_once('thatotherfile.php');

if (function_exists('get_contents')) 
 
    if(function_exists('print_contents'))
    
        $data = get_contents();
        print_contents($data);
    

会起作用的。

【讨论】:

@PHPglue 你的意思是 () 在他们的参数周围我认为 - 文件名是一个参数并且是必需的 - 但作为 the official doc uses them 我也选择使用它们。【参考方案2】:

您可以在使用函数的文件上使用include("otherfile.php")require("otherfile.php")include_once("otherfile.php")require_once("otherfile.php"),而在具有函数的文件上不使用,即:

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> 
<html xmlns='http://www.w3.org/1999/xhtml'> 
<head> 
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' /> 
<title>Shares</title> 
</head> 

<body> 
<?php
include_once("otherfile.php");
//the rest of the code...

http://php.net/manual/en/function.include.phphttp://php.net/manual/en/function.require.phphttp://php.net/manual/en/function.include-once.phphttp://php.net/manual/en/function.require-once.php

【讨论】:

以上是关于谁能帮我做要求工作?的主要内容,如果未能解决你的问题,请参考以下文章

谁能帮我做一个VBA打开带密码的EXCEL文件程序。

nginx反向代理访问很慢,我做了负载均衡,现在几乎无法访问,有谁能帮我解决一下,万分感谢。

谁能帮我解决我创建的触发器插入问题?

谁能帮我做下这道C语言编程题,明天就要交了,好心人帮帮忙,谢谢了~~~~求救呀·~~~

oracle scott用户几张表的关联查询,谁能帮我把这些解决一下,悬赏100,谢谢各位了

谁能帮我翻译一下,谢谢了,采纳答案后追加100分