1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
- function code_verify($uniacid, $receiver, $code) {
- $data = pdo_fetch('SELECT * FROM ' . tablename('uni_verifycode') . ' WHERE uniacid = :uniacid AND receiver = :receiver AND verifycode = :verifycode AND createtime > :createtime', array(':uniacid' => $uniacid, ':receiver' => $receiver, ':verifycode' => $code, ':createtime' => time() - 1800));
- if(empty($data)) {
- return false;
- }
- return true;
- }
- function utility_image_rename($image_source_url, $image_destination_url) {
- global $_W;
- load()->func('file');
- $image_source_url = str_replace(array("\0","%00","\r"),'',$image_source_url);
- if (empty($image_source_url) || !parse_path($image_source_url) || !file_is_image($image_source_url)) {
- return false;
- }
- if (!strexists($image_source_url, $_W['siteroot'])) {
- $img_local_path = file_remote_attach_fetch($image_source_url);
- if (is_error($img_local_path)) {
- return false;
- }
- $img_source_path = ATTACHMENT_ROOT . $img_local_path;
- } else {
- $img_local_path = substr($image_source_url, strlen($_W['siteroot']));
- $img_path_params = explode('/', $img_local_path);
- if ($img_path_params[0] != 'attachment') {
- return false;
- }
- $img_source_path = IA_ROOT . '/' . $img_local_path;
- }
- $result = copy($img_source_path, $image_destination_url);
- return $result;
- }
|