سلام دنیا!
Just a Hello World:
<?php
echo "Hello, World!";
?>آنچه باید در انتهای پروژه و هنگام تحویل گرفتن سایت از شرکت طراح بررسی و چک کنید.
برگرفته از: https://www.dadevarzan.com/web-design Credit
| <?php | |
| /** | |
| * @author Shahab Movahhedi <[email protected]> | |
| * @copyright © 2022 Shahab Movahhedi. All rights reserved. | |
| * @link http://sms.ir/ Documentation of sms.ir RESTful API PHP sample. | |
| * @version 1.2 | |
| */ | |
| class SmsIr { |
| /* | |
| GulpFile Coded by Shahab Movahhedi | |
| https://shmovahhedi.com | |
| */ | |
| import { src, dest } from "gulp"; | |
| import through from "through2"; | |
| import htmlmin from "gulp-html-minifier-terser"; | |
| import { execSync } from "child_process"; |
| import * as path from "path"; | |
| // import * as ForkTsCheckerWebpackPlugin from "fork-ts-checker-webpack-plugin"; | |
| import { fileURLToPath } from "url"; | |
| // Bring in the ability to create the `require()` method | |
| import { createRequire } from "module"; | |
| // construct the require method | |
| const require = createRequire(import.meta.url); | |
| const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); |
| @use "sass:color" as color; | |
| $Base-File-Url: "../"; | |
| $Base-Img-Url: "#{$Base-File-Url}images/"; | |
| $Responsive-Tablet-Max: 770px; | |
| $Responsive-Mobile-Max: 700px; | |
| $Responsive-MobileSmall-Max: 500px; | |
| @mixin media-max($maxwidth) { |
| @use "admin-panel/config" as *; | |
| .Markdown-Content { | |
| margin: 0; | |
| font-size: 1rem; | |
| font-family: $Font-Persian, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; | |
| line-height: 1.5; | |
| word-wrap: break-word; | |
| // color-scheme: dark; | |
| -ms-text-size-adjust: 100%; |
| /** | |
| * Resizes an Image File and converts it to a dataurl string. | |
| * @param imageFile the image file (probably from a file input) | |
| * @param resize_width The width you want the image to be | |
| * @param quality quality of the resize image 0 - 1 | |
| */ | |
| const resizeImage = ({ | |
| resizeWidth = 400, | |
| imageFile, | |
| quality = 1, |