Technical NotesTotal 64 articles

Centos, Ubuntu, Windows, Luinx system use
PHP to get ip, browser, operating system information-Small seven notes

PHP to get ip, browser, OS information

Get ip, OS, browser information
Making Your First WordPress Website - Simple Getting Started Tutorial - SevenNotes

Making Your First WordPress Website - A Simple Tutorial for Getting Started

First, what is wordpress Quickly learn to make your first WordPress website , WordPress is based on PHP and MySQL. using WordPress, users can easily create and maintain personal or commercial websites, blogs, e-commerce sites, WordPress user interface friend...
PHP operation directory or file common methods-Small seven notes

PHP common methods to manipulate directories or files

1, convert \ to / /** * Convert \ to / * * * @param string $path path * @return string path */ function dir_path($path) { $path = str_replace('\\', '/', $path); if(substr($path, -1) ! = '/'...
php session and cookie-Small Seven Notes

php session vs cookie

1, set session /** * set session * @param String $name session name * @param Mixed $data session data * @param Int $expire timeout(sec) */ function set _session($name, $data, $expir...
2 years ago
027015
Free Remote Desktop Software - Free Safe and Smooth Remote Connection to Computer Mobile Phone - Xiaoqi Notes

Free Remote Desktop Software - Free Safe and Smooth Remote Connection to Computer Mobile Phone

1, ToDesk ToDesk remote control software is a stable and smooth remote control computer cell phone connection software, remote desktop office, remote assistance operations and maintenance. Using end-to-end encryption, so that every remote access is safe and reliable. 2, RayLink RayLink remote control software, for individuals and ...
PHP CURL manipulation - Seven Notes

PHP CURL operations

The CURL class implements a wrapper around the PHP Curl extension, using instances of this class to enable remote access. To use this module you need to enable the Curl extension. 1, initiate get request function get_url($url) { $ch = curl_init(); $header[] = ''; curl_setop...
2 years ago
024615
PHP Date, Time, Byte Conversions - Xiao Qi Notes

PHP Date, Time, Byte Conversion

1, convert bytes to other units (Gb, Mb, etc.) 2, time conversion (convert seconds to time) /** * Function dataformat * Time conversion (convert seconds to time) * @param $n INT time */ function dataformat($n) { $hours = f ...
PHP xml data creation and reading-Small Seven Notes

PHP xml data creation and reading

PHP xml data creation and reading
2 years ago
018915
php get MAC address-Small Seven Notes

php get MAC address

php get MAC address
Free open source Vue3 backend template - Seven Notes

Free open source Vue3 backend template

1, Vue-Vben-Admin Vue-Vben-Admin is a backend solution based on Vue3.0, Vite, Ant-Design-Vue, TypeScript , the goal is to provide out-of-the-box solutions for the development of medium and large-scale projects . Including secondary packaging components, utils, hoo...
The Fastest and Easiest Way to Build Your Own Git Server - Seven Notes

The Fastest and Easiest Way to Build Your Own Git Server

Gogs is a self-service Git service that is extremely easy to set up. The goal of Gogs is to create the simplest, fastest and easiest way to build a self-service Git service. Developed in the Go language, Gogs can be distributed as a standalone binary and supports the Go language's support for...
2 years ago
031114
PHP DateTime common methods-Small seven notes

PHP DateTime common methods

Instantiation of an object preceded by \ means that the native class is used in the namespace, if the namespace is not used, you can remove the preceding \ 1. Output the current time $datetime = new \DateTime; print_r($datetime->format('Y-m-d H:i...