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/zh-hk/n/130132.html

(0)
打賞 微信掃一掃 微信掃一掃 支付寶掃一掃 支付寶掃一掃
IQMJ1的頭像IQMJ1
上一篇 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

發表回復

登錄後才能評論