本文整理汇总了PHP中FileUpload::Get_Path方法的典型用法代码示例。如果您正苦于以下问题:PHP FileUpload::Get_Path方法的具体用法?PHP FileUpload::Get_Path怎么用?PHP FileUpload::Get_Path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileUpload
的用法示例。
在下文中一共展示了FileUpload::Get_Path方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: FileUpload
<?php
require '../init.inc.php';
$file = new FileUpload('pic');
//$path = $file->Get_Link_Path();
if (isset($_POST['type'])) {
switch ($_POST['type']) {
case 'content':
$hight = 100;
$width = 150;
break;
case 'rotatain':
$hight = 193;
$width = 268;
}
}
$img = new Image($file->Get_Path());
$img->Thumb($width, $hight);
$img->Out();
Tool::alertOpenerClose('上传成功', $file->Get_Link_Path());
示例2: FileUpload
<?php
require '../init.inc.php';
if (isset($_GET['type'])) {
//查看了源代码,他的名称是:upload
$_fileupload = new FileUpload('upload', $_POST['MAX_FILE_SIZE']);
$_ckefn = $_GET['CKEditorFuncNum'];
$_path = $_fileupload->Get_Link_Path();
$img = new Image($_fileupload->Get_Path());
$img->Ck_Up(650, 600);
$img->Out();
echo "<script type='text/javascript'>window.parent.CKEDITOR.tools.callFunction({$_ckefn},\"{$_path}\",'图片上传成功!');</script>";
exit;
} else {
Tool::alertBack('警告:由于非法操作导致上传失败!');
}