本文整理汇总了PHP中SimpleImage::create方法的典型用法代码示例。如果您正苦于以下问题:PHP SimpleImage::create方法的具体用法?PHP SimpleImage::create怎么用?PHP SimpleImage::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SimpleImage
的用法示例。
在下文中一共展示了SimpleImage::create方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: date
case 1:
echo '<b>' . $content->getValue("dodaj", "niewypelniono") . '</b><br/><a href="dodaj.php">« ' . $content->getValue("global", "powrot") . '</a>';
exit;
break;
}
}
$tresc = @htmlspecialchars(mysqli_real_escape_string($db, $_POST['tresc']));
$tytul = @htmlspecialchars(mysqli_real_escape_string($db, $_POST['tytul']));
$zrodlo = @htmlspecialchars(mysqli_real_escape_string($db, $_POST['zrodlo']));
$autor = $user->userInfo("id");
$data = date('Y-m-d H:i:s');
$image = new SimpleImage();
$imageType = "";
switch ($_POST['type']) {
case 'tekst':
if (!$image->create($tresc)) {
echo '<b>' . $content->getValue("dodaj", "zadlugiText") . '</b><br/><a href="dodaj.php">« ' . $content->getValue("global", "powrot") . '</a>';
exit;
}
$imageType = "wiedza";
break;
case 'tekst_obrazek':
$data_img = date("YmdHis");
$sp1 = pathinfo($_FILES['obrazek']['name']);
$tmp_file = 'img/upload/tmp/' . $data_img . '.' . $sp1['extension'];
if (filesize($_FILES['obrazek']['tmp_name']) / 1024 >= $conf->pobierz('max_file_size')) {
echo '<b>' . sprintf($content->getValue("dodaj", "obrazekZaduzy"), $conf->pobierz('max_file_size')) . "KB" . '</b><br/><a href="dodaj.php">« ' . $content->getValue("global", "powrot") . '</a>';
exit;
}
switch (uploadFile('obrazek', 'img/upload/tmp/', array(1 => 'jpg', 'jpeg', 'gif', 'png', 'JPG', 'JPEG', 'GIF', 'PNG'), 0, $data_img)) {
case 0: