當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DataManager::setFilm方法代碼示例

本文整理匯總了PHP中DataManager::setFilm方法的典型用法代碼示例。如果您正苦於以下問題:PHP DataManager::setFilm方法的具體用法?PHP DataManager::setFilm怎麽用?PHP DataManager::setFilm使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DataManager的用法示例。


在下文中一共展示了DataManager::setFilm方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: htmlspecialchars

     $f_title_other = htmlspecialchars($_GET["title_other"]);
     $f_year_orig = htmlspecialchars($_GET["year_orig"]);
     $f_year_prod_begin = htmlspecialchars($_GET["year_prod_begin"]);
     $f_year_prod_end = htmlspecialchars($_GET["year_prod_end"]);
     $f_prod_country = htmlspecialchars($_GET["prod_country"]);
     $f_synopsis = htmlspecialchars($_GET["synopsis"]);
     $f_tv_duration = htmlspecialchars($_GET["tv_duration"]);
     $f_note = htmlspecialchars($_GET["note"]);
     $f_biblio = htmlspecialchars($_GET["biblio"]);
     $f_measurement = htmlspecialchars($_GET["measurement"]);
     $f_color = htmlspecialchars($_GET["color"]);
     $f_sound = htmlspecialchars($_GET["sound"]);
     $f_technical_process = htmlspecialchars($_GET["technical_process"]);
     $f_color_system = htmlspecialchars($_GET["color_system"]);
     $f_sound_system = htmlspecialchars($_GET["sound_system"]);
     $result = $data->setFilm($f_title_vo, $f_title_vf, $f_title_other, $f_year_orig, $f_year_prod_begin, $f_year_prod_end, $f_prod_country, $f_synopsis, $f_tv_duration, $f_note, $f_biblio, $f_measurement, $f_color, $f_sound, $f_technical_process, $f_color_system, $f_sound_system);
     break;
 case "add_cycle":
     $c_name = htmlspecialchars($_GET["name"]);
     $c_year = htmlspecialchars($_GET["year"]);
     $c_desc = htmlspecialchars($_GET["desc"]);
     $result = $data->setCycle($c_name, $c_year, $c_desc);
     break;
 case "film_artist":
     $rel_fa_film = htmlspecialchars($_GET["film"]);
     $rel_fa_artist = htmlspecialchars($_GET["artist"]);
     $rel_fa_actor = htmlspecialchars($_GET["actor"]) == "true" ? "1" : "0";
     $rel_fa_director = htmlspecialchars($_GET["director"]) == "true" ? "1" : "0";
     $result = $data->setRelationFilmArtist($rel_fa_film, $rel_fa_artist, $rel_fa_actor, $rel_fa_director);
     break;
 case "cycle_film":
開發者ID:Comicspidey,項目名稱:cdm,代碼行數:31,代碼來源:sendData.php


注:本文中的DataManager::setFilm方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。