当前位置: 首页>>代码示例>>PHP>>正文


PHP UrlManager::update方法代码示例

本文整理汇总了PHP中UrlManager::update方法的典型用法代码示例。如果您正苦于以下问题:PHP UrlManager::update方法的具体用法?PHP UrlManager::update怎么用?PHP UrlManager::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UrlManager的用法示例。


在下文中一共展示了UrlManager::update方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: intval

 $url_array = $form->getSubmitValues();
 $url = Security::remove_XSS($url_array['url']);
 $description = Security::remove_XSS($url_array['description']);
 $active = intval($url_array['active']);
 $url_id = $url_array['id'];
 $url_to_go = 'access_urls.php';
 if ($url_id != '') {
     //we can't change the status of the url with id=1
     if ($url_id == 1) {
         $active = 1;
     }
     //checking url
     if (substr($url, strlen($url) - 1, strlen($url)) == '/') {
         UrlManager::update($url_id, $url, $description, $active);
     } else {
         UrlManager::update($url_id, $url . '/', $description, $active);
     }
     // URL Images
     $url_images_dir = api_get_path(SYS_PATH) . 'custompages/url-images/';
     $image_fields = array("url_image_1", "url_image_2", "url_image_3");
     foreach ($image_fields as $image_field) {
         if ($_FILES[$image_field]['error'] == 0) {
             // Hardcoded: only PNG files allowed
             if (end(explode('.', $_FILES[$image_field]['name'])) == 'png') {
                 if (file_exists($url_images_dir . $url_id . '_' . $image_field . '.png')) {
                     // if the file exists, we have to remove it before move_uploaded_file
                     unlink($url_images_dir . $url_id . '_' . $image_field . '.png');
                 }
                 move_uploaded_file($_FILES[$image_field]['tmp_name'], $url_images_dir . $url_id . '_' . $image_field . '.png');
             }
             // else fail silently
开发者ID:omaoibrahim,项目名称:chamilo-lms,代码行数:31,代码来源:access_url_edit.php


注:本文中的UrlManager::update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。