current location:Home > php过滤用户输入 search

Classify:
Found a total of 529 related content
  • Getting Started with Android Fragment Usage WORD Version
    Getting Started with Android Fragment Usage WORD Version
    This document mainly talks about the usage of Fragments for getting started with Android; Fragments are used to describe some behaviors or part of the user interface in an Activity. We can create multiple UI panels in a single activity by merging multiple fragments, and they can also be reused at the same time. fragment in multiple activities. You can think of fragment as a module of activity. Fragment has its own life cycle and receives its own input events. It can be received from a running
    2024-02-01 0 580
  • JSON introductory tutorial Chinese WORD version
    JSON introductory tutorial Chinese WORD version
    This document mainly talks about the introductory tutorial of JSON; like XML, JSON is also a data format based on plain text. Since JSON is inherently prepared for JavaScript, the data format of JSON is very simple. You can use JSON to transmit a simple String, Number, Boolean, an array, or a complex Object. I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-03 3 1743
  • Shell scripting basics Chinese WORD version
    Shell scripting basics Chinese WORD version
    Shell itself is a program written in C language, which is a bridge for users to use Linux. Shell is both a command language and a programming language. As a command language, it interactively interprets and executes commands entered by the user; as a programming language, it defines various variables and parameters, and provides many control structures found only in high-level languages, including loops and branches. Although it is not part of the Linux system core, it calls most of the functions of the system core to execute programs, create files, and coordinate the running of various programs in a parallel manner. Therefore, for
    2024-02-03 6 2665
  • Easy Language Learning Manual Ten Days Illustrated Tutorial to Learn Easy Language pdf version
    Easy Language Learning Manual Ten Days Illustrated Tutorial to Learn Easy Language pdf version
    The Ten Days to Learn Easy Language Illustrated Tutorial provides a vivid and systematic explanation of the usage and operating techniques of Easy Language in the form of illustrations. Friends who need it can download it and take a look! The whole book is divided into ten chapters and is completed in ten days. The first chapter introduces the installation of Yi Language and the interface after operation. At the same time, a very simple small program is introduced to help users get started. Finally, we introduce the input methods of programming and some common problems encountered by beginners. Chapter 2 will touch on some specific issues, such as how to write a program that equals 1+2, and understand the concept of variables, the valid range of variables, data types and other knowledge.
    2024-02-28 0 816
  • Android data format parsing object JSON usage WORD version
    Android data format parsing object JSON usage WORD version
    This document mainly describes the usage of Android data format parsing object JSON; JSON can convert Java objects into json format strings, and can convert json strings into Java. More lightweight than XML, Json is lighter and simpler to use. JSON data format is widely used in client and server communication in Android, and is very convenient for network data transmission and analysis. I hope this document will help friends in need; interested friends can come and take a look.
    2024-01-30 0 1080
  • Basic knowledge of PLC programming Chinese doc version
    Basic knowledge of PLC programming Chinese doc version
    Programmable controller, called Programmable Controller in English, or PC for short. However, because PC is easily confused with Personal Computer (Personal Computer), people are still accustomed to using PLC as the abbreviation of programmable controller. It is an electronic system device with a microprocessor as the core for digital operation. It is specially designed for industrial field applications. It uses programmable memory to store and execute logical operations, sequence control, timing/ Operation instructions such as counting and arithmetic operations, and through digital or analog input
    2024-02-29 0 958
  • Sencha Touch Quick Start 2.0 Chinese WORD version
    Sencha Touch Quick Start 2.0 Chinese WORD version
    This document mainly talks about Sencha Touch Quick Start 2.0; Sencha Touch can make your Web App look like a Native App. Beautiful user interface components and rich data management are all based on the latest HTML5 and CSS3 WEB standards, and are fully compatible with Android and Apple iOS devices. I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-26 0 1085
  • Introduction to OpenGL Programming Chinese WORD version
    Introduction to OpenGL Programming Chinese WORD version
    This document mainly talks about the introduction to OpenGL programming; OpenGL• is a powerful graphics library that allows users to easily develop three-dimensional graphics with a variety of special visions (such as lighting, textures, transparency, and shadows). A three-dimensional graphics software package that is independent of software and hardware platforms and can run on a variety of window systems; OpenGL (Open Graphics Library) is a software interface for graphics hardware and an industry standard in this field. I hope this document will help friends in need; interested friends can come here
    2024-01-28 0 691
  • Flash CS3 animation production basic tutorial lesson plan Chinese WORD version
    Flash CS3 animation production basic tutorial lesson plan Chinese WORD version
    Flash is a classic and excellent vector animation editing software launched by Adobe. The size of animations produced using this software is much smaller than that of bitmap animation files (such as GLF animations). Users can not only add sound and video to animations and bitmap images, you can also create interactive movies or fully functional websites. This software does not require high computer knowledge of animators, is simple and easy to learn, and has smooth and vivid effects. It is a very suitable software for beginners in animation production. Before learning to create animations, through the study of this chapter, readers should be familiar with the characteristics of Flash animations
    2024-01-17 0 1140
  • Python website development guide WORD version
    Python website development guide WORD version
    This document mainly talks about the guidelines for developing websites in Python; HTML is the universal language of the Internet, a simple and universal all-in-one markup language. It allows web page producers to create complex pages that combine text and images. These pages can be browsed by anyone else on the Internet, no matter what type of computer or browser is used. Python, like other programming languages, has its own set of processes. Control statements, and the syntax of these statements is similar to other programming languages. They all have keywords such as for, if, and while to express the program flow. I hope this document will help friends in need
    2024-01-25 0 979
  • mod_python 3.2.8 Chinese manual doc version
    mod_python 3.2.8 Chinese manual doc version
    mod_python 3.2.8 Chinese manual provides the Chinese manual of Mod_python 3.2.8, which is a good material for learning Mod_python. Interested friends can refer to it. mod_python originated from the Httpdapy project (1997). Much later Httpdapy was called mod_python because Httpdapy was not specific to the apache server. Httpdapy was designed to be cross-platform, but actually started primarily with Netscape servers (
    2024-01-25 0 923
  • python basic tutorial to lesson 60_python basic information word version
    python basic tutorial to lesson 60_python basic information word version
    Basic python tutorial to lesson 60. This tutorial introduces to you at the beginning, why to learn python, what are the advantages of python, etc. It will really make you want to learn python quickly. Why use Python as an introductory programming language? the reason is simple. Every language has its supporters and detractors. Go to Google "why python" and you will get a lot of results, such as wide range of applications, open source, active community, rich libraries, cross-platform, etc. You may also find
    2024-01-25 0 1072
  • Python introductory tutorial Chinese WORD version
    Python introductory tutorial Chinese WORD version
    Python is an efficient language. The reading and writing operations are very simple. Just like ordinary English, Python is an interpreted and executed language. We do not need to compile, we only need to write the code to run. Python is an oriented language. The language of objects, everything in Python is an object. Python is a very interesting language; interested friends can come and take a look.
    2024-01-25 0 656
  • Basic introduction to python unittest Chinese WORD version
    Basic introduction to python unittest Chinese WORD version
    Python comes with a unit test module, pyUnit is what we call: unittest; this document mainly talks about the basic introduction of python unittest; interested friends can come and take a look
    2024-01-25 0 862
  • Detailed explanation of Python operations on Excel Chinese WORD version
    Detailed explanation of Python operations on Excel Chinese WORD version
    This document mainly introduces how to read and write office excel through python, using the xlrd, xlwt and xlutils modules. It also demonstrates how to operate excel through the Tcl tcom package. Interested friends can come and take a look
    2024-01-25 0 1285
  • python matplotlib drawing Chinese WORD version
    python matplotlib drawing Chinese WORD version
    Matplotlib.pyplot is a method used to draw pictures, similar to the plot command in matlab, and its usage is basically the same. This document mainly talks about drawing with python matplotlib; interested friends can come and take a look.
    2024-01-25 0 1180
  • matplotlib function manual Chinese PDF version
    matplotlib function manual Chinese PDF version
    This document is a matplotlib function manual; I hope it will be helpful to everyone's study. Interested friends can come and take a look.
    2024-01-25 0 686
  • abaqus Python example
    abaqus Python example
    This document mainly talks about the abaqus Python example - operating excel files; currently processing data cannot be done without excel, so pythoners must learn to use python to operate excel tables. There are also many ways to interact between Python and excel; friends in need can download it and take a look
    2024-01-25 0 531
  • Python module import and installation use Chinese WORD version
    Python module import and installation use Chinese WORD version
    This document mainly talks about the import, installation and use of python modules; I hope it will be helpful to everyone's learning; interested friends can come and take a look.
    2024-01-25 0 775
  • Using Python for socket programming Chinese WORD version
    Using Python for socket programming Chinese WORD version
    This document mainly talks about using Python for socket programming; as an interpreted language, Python is easy to use and can quickly verify our ideas and develop prototype software. A Python program can be interpreted as a whole or line by line. Friends in need can download and take a look
    2024-01-23 0 1006
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!