php网页调用ckeditor(php调用网址)

本文目录一览:

php怎么调用ckeditor

将FCKeditor放在网站根目录

在PHP文件里面,包含/FCKeditor/ckeditor/” target=”_blank”fckeditor.php文件

在网页中需要放置该编辑器的地方插入下面代码即可调用:

代码如下 复制代码

1 ?php

//包含fckeditor类

include(“fckeditor/fckeditor.php”) ;

//创建一个FCKeditor,表单名称为 jzleditor

$oFCKeditor = new FCKeditor(“jzleditor”);

//设置编辑器路径

$oFCKeditor-BasePath = “fckeditor/”;

$oFCKeditor-ToolbarSet = “Default”;//工具按钮

$oFCKeditor-Value =$cont; //;设置初始内容

$oFCKeditor-Width=”100%”; //设置它的宽度

$oFCKeditor-Height=”550px”; //设置它的高度

$oFCKeditor-Create();

我还有在后盾网学习呢,加油(ง •̀_•́)งฅ ̳͒•ˑ̫• ̳͒ฅ♡

php调用ckeditor~呢?

?php

    //包含fckeditor类

    include(“fckeditor/fckeditor.php”) ;

    //创建一个FCKeditor,表单名称为 jzleditor

    $oFCKeditor = new FCKeditor(“jzleditor”);

    //设置编辑器路径

    $oFCKeditor-BasePath = “fckeditor/”;

    $oFCKeditor-ToolbarSet = “Default”;//工具按钮

    $oFCKeditor-Value =$cont; //;设置初始内容

    $oFCKeditor-Width=”100%”; //设置它的宽度

    $oFCKeditor-Height=”550px”; //设置它的高度

    $oFCKeditor-Create();

   ?这是代码,我是在后盾人实训班学会的,楼主也可以去了解,学费九折还包住宿哦.

如何在php中调用ckeditor 并读取出数据库中的数据

你换个名字不就完了,多简单。实在不行就替换函数,str_replace什么的

请问CKEditor 在PHP中如何调用啊?

在PHP中调用

?php

function FCKeditor_IsCompatibleBrowser()

{

if ( isset( $_SERVER ) ) {

$sAgent = $_SERVER[‘HTTP_USER_AGENT’] ;

}

else {

global $HTTP_SERVER_VARS ;

if ( isset( $HTTP_SERVER_VARS ) ) {

$sAgent = $HTTP_SERVER_VARS[‘HTTP_USER_AGENT’] ;

}

else {

global $HTTP_USER_AGENT ;

$sAgent = $HTTP_USER_AGENT ;

}

}

if ( strpos($sAgent, ‘MSIE’) !== false strpos($sAgent, ‘mac’) === false strpos($sAgent, ‘Opera’) === false )

{

$iVersion = (float)substr($sAgent, strpos($sAgent, ‘MSIE’) + 5, 3) ;

return ($iVersion = 5.5) ;

}

else if ( strpos($sAgent, ‘Gecko/’) !== false )

{

$iVersion = (int)substr($sAgent, strpos($sAgent, ‘Gecko/’) + 6, 8) ;

return ($iVersion = 20030210) ;

}

else if ( strpos($sAgent, ‘Opera/’) !== false )

{

$fVersion = (float)substr($sAgent, strpos($sAgent, ‘Opera/’) + 6, 4) ;

return ($fVersion = 9.5) ;

}

else if ( preg_match( “|AppleWebKit/(\d+)|i”, $sAgent, $matches ) )

{

$iVersion = $matches[1] ;

return ( $matches[1] = 522 ) ;

}

else

return false ;

}

class FCKeditor

{

public $InstanceName ;

public $BasePath ;

public $Width ;

public $Height ;

public $ToolbarSet ;

public $Value ;

public $Config ;

public function __construct( $instanceName )

{

$this-InstanceName = $instanceName ;

$this-BasePath = ‘../common/editor/’ ;

$this-Width = ‘100%’ ;

$this-Height = ‘400’ ;

$this-ToolbarSet = ‘Default’ ;

$this-Value = ” ;

$this-Config = array() ;

}

public function Create()

{

echo $this-CreateHtml() ;

}

public function CreateHtml()

{

$HtmlValue = htmlspecialchars( $this-Value ) ;

$Html = ” ;

if ( $this-IsCompatible() )

{

if ( isset( $_GET[‘fcksource’] ) $_GET[‘fcksource’] == “true” )

$File = ‘fckeditor.original.html’ ;

else

$File = ‘fckeditor.html’ ;

$Link = “{$this-BasePath}editor/{$File}?InstanceName={$this-InstanceName}” ;

if ( $this-ToolbarSet != ” )

$Link .= “Toolbar={$this-ToolbarSet}” ;

$Html .= “input type=\”hidden\” id=\”{$this-InstanceName}\” name=\”{$this-InstanceName}\” value=\”{$HtmlValue}\” style=\”display:none\” /” ;

$Html .= “input type=\”hidden\” id=\”{$this-InstanceName}___Config\” value=\”” . $this-GetConfigFieldString() . “\” style=\”display:none\” /” ;

$Html .= “iframe id=\”{$this-InstanceName}___Frame\” src=\”{$Link}\” width=\”{$this-Width}\” height=\”{$this-Height}\” frameborder=\”0\” scrolling=\”no\”/iframe” ;

}

else

{

if ( strpos( $this-Width, ‘%’ ) === false )

$WidthCSS = $this-Width . ‘px’ ;

else

$WidthCSS = $this-Width ;

if ( strpos( $this-Height, ‘%’ ) === false )

$HeightCSS = $this-Height . ‘px’ ;

else

$HeightCSS = $this-Height ;

$Html .= “textarea name=\”{$this-InstanceName}\” rows=\”4\” cols=\”40\” style=\”width: {$WidthCSS}; height: {$HeightCSS}\”{$HtmlValue}/textarea” ;

}

return $Html ;

}

public function IsCompatible()

{

return FCKeditor_IsCompatibleBrowser() ;

}

public function GetConfigFieldString()

{

$sParams = ” ;

$bFirst = true ;

foreach ( $this-Config as $sKey = $sValue )

{

if ( $bFirst == false )

$sParams .= ” ;

else

$bFirst = false ;

if ( $sValue === true )

$sParams .= $this-EncodeConfig( $sKey ) . ‘=true’ ;

else if ( $sValue === false )

$sParams .= $this-EncodeConfig( $sKey ) . ‘=false’ ;

else

$sParams .= $this-EncodeConfig( $sKey ) . ‘=’ . $this-EncodeConfig( $sValue ) ;

}

return $sParams ;

}

public function EncodeConfig( $valueToEncode )

{

$chars = array(

” = ‘%26’,

‘=’ = ‘%3D’,

‘”‘ = ‘%22’ ) ;

return strtr( $valueToEncode, $chars ) ;

}

}

$editor = new FCKeditor(‘editor’) ;//接收时$_POST[‘……..’]中的内容

$editor-BasePath = “../common/editor/”;//FCKEDITOR的路径

?

在需要调用的地方?php $editor-Create();?

接受的文件用$_POST[‘editor’]调用(editor)可在$editor = new FCKeditor(‘editor’)设置

原创文章,作者:IQMJ1,如若转载,请注明出处:https://www.506064.com/n/130132.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
IQMJ1IQMJ1
上一篇 2024-10-03 23:27
下一篇 2024-10-03 23:27

相关推荐

  • PHP和Python哪个好找工作?

    PHP和Python都是非常流行的编程语言,它们被广泛应用于不同领域的开发中。但是,在考虑择业方向的时候,很多人都会有一个问题:PHP和Python哪个好找工作?这篇文章将从多个方…

    编程 2025-04-29
  • PHP怎么接币

    想要在自己的网站或应用中接受比特币等加密货币的支付,就需要对该加密货币拥有一定的了解,并使用对应的API进行开发。本文将从多个方面详细阐述如何使用PHP接受加密货币的支付。 一、环…

    编程 2025-04-29
  • python爬取网页并生成表格

    本文将从以下几个方面详细介绍如何使用Python爬取网页数据并生成表格: 一、获取网页数据 获取网页数据的一般思路是通过HTTP请求获取网页内容,最常用的方式是使用Python库r…

    编程 2025-04-28
  • 网页防篡改的重要性和市场占有率

    网页防篡改对于保护网站安全和用户利益至关重要,而市场上针对网页防篡改的产品和服务也呈现出不断增长的趋势。 一、市场占有率 据不完全统计,目前全球各类网页防篡改产品和服务的市场规模已…

    编程 2025-04-28
  • 使用PHP foreach遍历有相同属性的值

    本篇文章将介绍如何使用PHP foreach遍历具有相同属性的值,并给出相应的代码示例。 一、基础概念 在讲解如何使用PHP foreach遍历有相同属性的值之前,我们需要先了解几…

    编程 2025-04-28
  • Python编程实战:用Python做网页与HTML

    Python语言是一种被广泛应用的高级编程语言,也是一种非常适合于开发网页和处理HTML的语言。在本文中,我们将从多个方面介绍如何用Python来编写网页和处理HTML。 一、Py…

    编程 2025-04-28
  • Python爬取网页信息

    本文将从多个方面对Python爬取网页信息做详细的阐述。 一、爬虫介绍 爬虫是一种自动化程序,可以模拟人对网页进行访问获取信息的行为。通过编写代码,我们可以指定要获取的信息,将其从…

    编程 2025-04-28
  • PHP获取301跳转后的地址

    本文将为大家介绍如何使用PHP获取301跳转后的地址。301重定向是什么呢?当我们访问一个网页A,但是它已经被迁移到了另一个地址B,此时若服务器端做了301重定向,那么你的浏览器在…

    编程 2025-04-27
  • 使用Python转发网页内容

    Python是一种广泛使用的编程语言,它在网络爬虫、数据分析、人工智能等领域都有广泛的应用。其中,使用Python转发网页内容也是一个常见的应用场景。在本文中,我们将从多个方面详细…

    编程 2025-04-27
  • PHP登录页面代码实现

    本文将从多个方面详细阐述如何使用PHP编写一个简单的登录页面。 1. PHP登录页面基本架构 在PHP登录页面中,需要包含HTML表单,用户在表单中输入账号密码等信息,提交表单后服…

    编程 2025-04-27

发表回复

登录后才能评论