本文整理汇总了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":