- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
您在下面看到的是我脚本的一部分。
问题是我只需要重新调整大小的缩略图而不是原始文件。如果未上传,图像不会调整大小,因此过程应如下所示:
现在这最后一部分(删除)不起作用。我收到此错误:
PHP Warning: unlink($target_file) [function.unlink]: No such file or directory in /path/file.php on line X
它没有找到它!
if (isset($_REQUEST['Submit'])) {
mkdir($dirloc, 0755, true);
$i1=$_FILES['image']['name'];
$nw1="$dirloc/".$i1;
if ($i1) {
$copy1 = copy($_FILES['image']['tmp_name'], $nw1);
}
$fileName = $_FILES["image"]["name"];
$kaboom = explode(".", $fileName);
$fileExt = end($kaboom);
function ak_img_resize($target, $newcopy, $w, $h, $ext) {
list($w_orig, $h_orig) = getimagesize($target);
$scale_ratio = $w_orig / $h_orig;
if (($w / $h) > $scale_ratio) {
$w = $h * $scale_ratio;
} else {
$h = $w / $scale_ratio;
}
$img = "";
$ext = strtolower($ext);
if ($ext == "gif"){
$img = imagecreatefromgif($target);
} else if($ext =="png") {
$img = imagecreatefrompng($target);
} else {
$img = imagecreatefromjpeg($target);
}
$tci = imagecreatetruecolor($w, $h);
imagecopyresampled($tci, $img, 0, 0, 0, 0, $w, $h, $w_orig, $h_orig);
imagejpeg($tci, $newcopy, 80);
}
$target_file = "$dirloc/$fileName";
$resized_file = "$dirloc/thumb.$fileExt";
$wmax = 150;
$hmax = 150;
ak_img_resize($target_file, $resized_file, $wmax, $hmax, $fileExt);
$xxx = $resized_file;
$delete_target_file = unlink('$target_file');
$sql = "INSERT INTO $db_table(path,code,timecode,catg,description,title) values
('$xxx','".mysql_real_escape_string(stripslashes($_REQUEST['code']))."',
'".mysql_real_escape_string(stripslashes($times))."',
'".mysql_real_escape_string(stripslashes($_REQUEST['catg']))."',
'".mysql_real_escape_string(stripslashes($_REQUEST['area2']))."',
'".mysql_real_escape_string(stripslashes($_REQUEST['fbox']))."')";
if($result = mysql_query($sql ,$db)) {
$codes = $_REQUEST['code'];
$linkto = "?v=$codes";
echo "<script>window.location = '$linkto'</script>";
} else {
echo "ERROR: ".mysql_error();
}
} else {
// Here comes the form
}
谁能解释一下为什么不删除它?
最佳答案
使用双引号或根本不使用任何引号。
unlink("$target_file");
或
unlink($target_file);
用单引号括起来的变量不会被解析,你需要用双引号括起来或者根本不使用引号。
关于php - 为什么 Unlink 不适用于此脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6439896/
我在我的 Xcode 项目目录中输入了以下内容: keytool -genkey -v -keystore release.keystore -alias mykey -keyalg RSA \
假设我有一个像这样的 DataFrame(或 Series): Value 0 0.5 1 0.8 2 -0.2 3 None 4 None 5 None
我正在对一个 Pandas 系列进行相对繁重的应用。有什么方法可以返回一些打印反馈,说明每次调用函数时在函数内部进行打印还有多远? 最佳答案 您可以使用跟踪器包装您的函数。以下两个示例,一个基于完成的
我有一个 DataFrame,其中一列包含列表作为单元格内容,如下所示: import pandas as pd df = pd.DataFrame({ 'col_lists': [[1, 2
我想使用 Pandas df.apply 但仅限于某些行 作为一个例子,我想做这样的事情,但我的实际问题有点复杂: import pandas as pd import math z = pd.Dat
我有以下 Pandas 数据框 id dist ds 0 0 0 0 5 1 0 0 7 2 0 0
这发生在我尝试使用 Gradle 构建时。由于字符串是对象,因此似乎没有理由发生此错误: No signature of method: java.util.HashMap.getOrDefault(
您好,有人可以解释为什么在 remaining() 函数中的 Backbone 示例应用程序 ( http://backbonejs.org/examples/todos/index.html ) 中
我有两个域类:用户 class User { String username String password String email Date dateCreated
问题陈述: 一个 pandas dataframe 列系列,same_group 需要根据两个现有列 row 和 col 的值从 bool 值创建。如果两个值在字典 memberships 中具有相似
apporable 报告以下错误: error: unknown type name 'MKMapItem'; did you mean 'MKMapView'? MKMapItem* destina
我有一个带有地址列的大型 DataFrame: data addr 0 0.617964 IN,Krishnagiri,635115 1 0.635428 IN,Chennai
我有一个列表list,里面有这样的项目 ElementA: Number=1, Version=1 ElementB: Number=1, Version=2 ElementC: Number=1,
我正在编译我的源代码,它只是在没有运行应用程序的情况下终止。这是我得到的日志: Build/android-armeabi-debug/com.app4u.portaldorugby/PortalDo
我正在尝试根据另一个单元格的值更改单元格值(颜色“红色”或“绿色”)。我运行以下命令: df.loc[0, 'Colour'] = df.loc[0, 'Count'].apply(lambda x:
我想弄清楚如何使用 StateT结合两个 State基于对我的 Scalaz state monad examples 的评论的状态转换器回答。 看来我已经很接近了,但是在尝试申请 sequence
如果我已经为它绑定(bind)了集合,我该如何添加 RibbonLibrary 默认的快速访问项容器。当我从 UI 添加快速访问工具项时,它会抛出 Operation is not valid whi
在我学习期间Typoclassopedia我遇到了这个证明,但我不确定我的证明是否正确。问题是: One might imagine a variant of the interchange law
我是一名优秀的程序员,十分优秀!