外掛程式60 轉換簡訊語言

2021-06-02 00:46:55 字數 653 閱讀 3918

<?php // plug-in 60: replace sms talk

/* * 轉換簡訊語言

* 外掛程式說明:

* 接受乙個字串,如果它包含可識別的簡訊語音縮寫符,就把他們轉換為標準英語語句並返回。

* 它需要以下引數:

* $text 需要處理的文字。

*/// this is an executable example with additional code supplied

// to obtain just the plug-ins please click on the download link

$text = "fyi, afaik imho this is a cool plug-in, lol.";

echo "before: $text

after: " .

piphp_replacesmstalk($text);

function piphp_replacesmstalk($text)

$text = preg_replace($from1, $to1, $text);

return preg_replace($from2, $to2, $text);

}?>

Oralce SQL語言常用函式(四)轉換函式

轉換函式 轉換函式主要是用於操作多種資料型別,它的作用是把資料從一種資料型別轉換 為另一種資料型別,常用的轉換函式主要有以下兩種 1.to char 此函式主要將日期函式轉換為字串,實際上我們主要使用它對日期進行轉換 有兩種轉換日期的模式 to char date 或者to char date,fo...

20141011 轉換習題2

習題要求 依次鍵盤輸入每個人的名字,加年齡,之後彙總列印出來,之後求年齡和列印出來。需要將名字和年齡分別定義賦值。名字定義為引用型,string m1 console.readline 年齡則需要定義為值型 double n1 convert.todouble console.readline 因為...

20141010 轉換習題1

練習一 要求 在控制台中人工輸入任意十個數值,最後求十個數值的合。首先要將輸入的數值定義 1 整型定義 以int為例 int a convert.toint console.readline 2 浮點定義以double為例 double a convert.todouble console.read...