public static void ConvertPicture2PDF(string jpgfile, string pdf) { try { var document = new Document(iTextSharp.text.PageSize.A4, 25, 25, 25, 25); us ...
分类:
其他好文 时间:
2018-01-29 15:33:36
阅读次数:
207
引入路径的问题,建议加入include_once $_SERVER['DOCUMENT_ROOT']."/include.php";意思是获取网站根目中的include.php 截图如下: ...
分类:
Web程序 时间:
2017-10-11 18:16:47
阅读次数:
355
PHP中调用move_uploaded_file函数提示failed to open stream和 Unable to move 在做一个PHP文件上传系统的时候,使用move_uploaded_file进行文件上传,提示下面两个warning,不能成功上传文件 Warning: move_upl ...
分类:
Web程序 时间:
2017-08-19 13:00:50
阅读次数:
226
运行phpStudy.exe,窗口弹出后,点击启动按钮,即可开始编程,如下图: 注意php文件名不可以有中文字符,否则运行出错,错误提示如下: Warning: Unknown: failed to open stream: No such file or directory in Unknown ...
分类:
其他好文 时间:
2017-07-19 14:40:28
阅读次数:
152
链接 分析:遍历一下,求个gcd即可,最后按照ans排序并去重 1 /* 2 PROB:frac1 3 ID:wanghan 4 LANG:C++ 5 */ 6 #include "iostream" 7 #include "cstdio" 8 #include "cstring" 9 #inclu ...
分类:
其他好文 时间:
2017-07-05 01:21:21
阅读次数:
239
题目链接:http://ac.jobdu.com/problem.php?pid=1077 详解链接:https://github.com/zpfbuaa/JobduInCPlusPlus 参考代码: ...
分类:
其他好文 时间:
2017-05-03 19:11:46
阅读次数:
238
在使用file_get_contents方法来获取远程文件时会出现 [function.file-get-contents]: failed to open stream: HTTP request failed! 错误 解决方法是:修改php.ini 中的allow_url_fopen = On ...
分类:
Web程序 时间:
2016-10-31 21:24:10
阅读次数:
386
http://www.lydsy.com/JudgeOnline/problem.php?id=1597 (题目链接) 题意 购买n个矩形,每块土地的价格是它的面积,但可以同时购买多快土地. 这些土地的价格是它们最大的长乘以它们最大的宽,求最少花费。 Solution 按照x单增,y单减排序,将可以 ...
分类:
其他好文 时间:
2016-10-30 22:04:26
阅读次数:
194
最近在学习PHP 在保存文件的时候报Warning: file_put_contents(data.txt): failed to open stream: Permission denied in /Library/WebServer/Documents/test.php on line 22错误 ...
分类:
Web程序 时间:
2016-10-25 19:12:55
阅读次数:
1635
报错截图1: 报错截图2: 报错原因没有权限访问thinkphp5/runtime目录。 解决方法: 1.如果thinkphp5/runtime目录下面有文件,先清空thinkphp5/runtime目录; 2.修改thinkphp5/runtime目录权限为可读可写。 ...
分类:
Web程序 时间:
2016-07-22 22:44:20
阅读次数:
972