谁能帮我把百度编辑器写入php的一个页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了谁能帮我把百度编辑器写入php的一个页面相关的知识,希望对你有一定的参考价值。

谁能帮我写入wordpress的独立投稿页面

参考技术A

第一步:在项目的任一文件夹中建立一个用于存放UEditor相关资源和文件的目录,此处在项目根目录下建立,起名为ueditor。

 

第二步:拷贝源码包中的dialogs、themes、third-party、editor_all.js和editor_config.js到ueditor文夹中。其中,除了ueditor目录之外的其余文件均为具体项目文件,此处所列仅供示例。


第三步:为简单起见,此处将以根目录下的index.php页面作为编辑器的实例化页面,用来展示UEditor的完整版效果。在index.php文件中,首先导入编辑器需要的三个入口文件,示例代码如下:

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>编辑器完整版实例</title>
<script type="text/javascript" src="ueditor/editor_config.js"></script>
<script type="text/javascript" src="ueditor/editor_all.js"></script>


第四步:然后在index.php文件中创建编辑器实例及其DOM容器。具体代码示例如下:


<textarea name="后台取值的key" id="myEditor">这里写你的初始化内容</textarea>
<script type="text/javascript">
    var editor = new UE.ui.Editor();
    editor.render("myEditor");
    //1.2.4以后可以使用一下代码实例化编辑器
    //UE.getEditor('myEditor')
</script>


最后一步: 在/ueditor/ editor_config.js中查找URL变量配置编辑器在你项目中的路径。


   

//强烈推荐以这种方式进行绝对路径配置
URL= window.UEDITOR_HOME_URL||"/UETest/ueditor/";

   

至此,一个完整的编辑器实例就已经部署到咱们的项目中了!

希望对你有所帮助~

追问

我把那个php页面文件发你,你能不能帮我弄

参考技术B 不就是wordpress 整合百度编辑器吗?

谁能帮我做要求工作?

【中文标题】谁能帮我做要求工作?【英文标题】: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

【讨论】:

以上是关于谁能帮我把百度编辑器写入php的一个页面的主要内容,如果未能解决你的问题,请参考以下文章

jquery:谁能帮我把这个幻灯片修改成七张图片的,还要滚动方式换成向左滚动的,是就query+css做的。

谁能帮我解决《当前页面脚本发生错误》的问题?

各位,对于salesforce非常陌生,谁能帮我通俗地解释一下吗?百度百科里面ctl-c ctl-v的就不要来了。

谁能帮我把这首诗译成英语:

谁能帮我把这个java代码分析一下我被绕晕了

谁能帮我把这个程序改为verilog语言必有重谢