phpBook 是個(gè)建立於 PHP 及 MySQL 的留言板。 功能包括: -- 內(nèi)建多種語(yǔ)法 (包括中文) -- IP 封鎖及禁止存取 -- 可自訂表情符號(hào) -- URL-Code,包括 URL-Link s, URL-Picture s -- 自訂禁止字句 -- 防止惡意灌水式攻擊
標(biāo)簽: URL-Code phpBook MySQL PHP
上傳時(shí)間: 2013-12-16
上傳用戶(hù):dongbaobao
學(xué)會(huì)對(duì)文件的記錄鎖定,及解鎖。#include <stdio.h> #include <unistd.h> #include <fcntl.h> int main() { int fd int i struct { char name[20] uint ID int age } myrec fd =open("name", O_RDWR|O_CREAT, 0755) if (fd == -1) return -1 printf("Input your name:") scanf("%s", myrec.name) printf("Inpute your ID :") scanf("%d", &myrec.ID) printf("Input your age :") scanf("%d", &myrec.age) lseek(fd, 0,SEEK_END) lockf(fd, 1, 0) write(fd, (void *)&myrec, sizeof(myrec)) lockf(fd, 0 ,0) return 0 } 執(zhí)行命令cc lock.c –o lock.out Chmod +x lock.out ./lock.out
標(biāo)簽: 記錄
上傳時(shí)間: 2016-01-04
上傳用戶(hù):亞亞娟娟123
在這篇文檔中,將以C/C++的源碼作為我們基礎(chǔ),所以必然涉及一些關(guān)于C/C++的編譯的知識(shí),相關(guān)于這方面的內(nèi)容,還請(qǐng)各位查看相關(guān)的編譯器的文檔。這里所默認(rèn)的編譯器是UNIX下的GCC和CC。
標(biāo)簽: 文檔
上傳時(shí)間: 2016-01-13
上傳用戶(hù):chenjjer
C語(yǔ)言進(jìn)階,包含以下的內(nèi)容:C語(yǔ)言進(jìn)階-第一講概述.pdf\C語(yǔ)言進(jìn)階-第二講C語(yǔ)言復(fù)習(xí).pdf\C語(yǔ)言進(jìn)階-第三講編譯匯編調(diào)試.pdf\C語(yǔ)言進(jìn)階-第四講存儲(chǔ)器與指針.pdf\C語(yǔ)言進(jìn)階-第五講 數(shù)據(jù)結(jié)構(gòu)與鏈表.pdf\C語(yǔ)言進(jìn)階-第六講中斷與驅(qū)動(dòng).pdf\C語(yǔ)言進(jìn)階-第七講編碼風(fēng)格.pdf\C語(yǔ)言進(jìn)階-第八講編寫(xiě)安全無(wú)錯(cuò)的代碼.pdf\C語(yǔ)言進(jìn)階-lmalloc 第四講代碼.rar\C語(yǔ)言進(jìn)階-ASIX Win link list 第五講代碼.rar
標(biāo)簽: pdfC 進(jìn)階 語(yǔ)言 C語(yǔ)言
上傳時(shí)間: 2016-01-16
上傳用戶(hù):pinksun9
數(shù)據(jù)結(jié)構(gòu)(c\c++)1800例題與答案,值得一看
標(biāo)簽: 1800 cc 數(shù)據(jù)結(jié)構(gòu)
上傳時(shí)間: 2014-11-29
上傳用戶(hù):181992417
This m-file simulates MPSK (BPSK,QPSK,8PSK)with theoretical and simulated results using Gray coding. Numerical examples of a satellite link design are shown using QPSK and/or 8PSK when the bit rate(Rb)is greater than the channel bandwidth Wc (Band-limited channel).
標(biāo)簽: theoretical simulates simulated results
上傳時(shí)間: 2016-01-19
上傳用戶(hù):pompey
Atmel AT91SAM7SE256的一些基本驅(qū)動(dòng)代碼, 包括Link Files, 中斷源配置, SDRAM, USART, Timer等外設(shè)的驅(qū)動(dòng)代碼。可用于AT91SAM7SE系列處理器。
上傳時(shí)間: 2013-12-20
上傳用戶(hù):zjf3110
Introduction A shared library is a collection of functions that are available for use by one or more applications running on a system. On Windows operating systems, the library is compiled into a dynamic link library (.dll) file. At run-time, the library is loaded into memory and made accessible to all applications.
標(biāo)簽: Introduction collection available functions
上傳時(shí)間: 2014-01-26
上傳用戶(hù):2467478207
This Microsoft(R) Macro Assembler Reference lists all MASM instructions, directives, statements, and operators. It also serves as a quick reference to the Programmer’s WorkBench commands, and the commands for Microsoft utilities such as LINK and LIB. This book documents features of MASM version 6.1, and is part of a complete MASM documentation set.
標(biāo)簽: instructions directives statements Microsoft
上傳時(shí)間: 2016-01-31
上傳用戶(hù):asddsd
c++ how to program 里面詳細(xì)介紹了從第1章到第24章的代碼學(xué)習(xí)實(shí)例。是初學(xué)者很好的學(xué)習(xí)資料。 第1章 計(jì)算機(jī)、Internet和萬(wàn)維網(wǎng)簡(jiǎn)介 第2章 C++編程入門(mén) 第3章 類(lèi)和對(duì)象介紹 第4章 控制語(yǔ)句(第Ⅰ部分) 第5章 控制語(yǔ)句(第Ⅱ部分) 第6章 函數(shù)和遞歸入門(mén) 第7章 數(shù)組與CC+標(biāo)準(zhǔn)庫(kù)類(lèi)模板vector 第8章 指針和基于指針的字符串 第9章 類(lèi)的深入剖析(第Ⅰ部分) 第10章 類(lèi)的深入剖析(第Ⅱ部分) 第11章 運(yùn)算符重載:字符串和數(shù)組對(duì)象 第12章 面向?qū)ο缶幊蹋豪^承 第13章 面向?qū)ο缶幊蹋憾鄳B(tài)性 第14章 模板 第15章 輸入/輸出流 第16章 異常處理 第17章 文件處理 第18章 String類(lèi)和字符串流處理 第19章 Web編程 第20章 搜索和排序 第21章 數(shù)據(jù)結(jié)構(gòu) 第22章 位、字符、C字符串和結(jié)構(gòu)體 第23章 標(biāo)準(zhǔn)模板庫(kù) 第24章 其他主題
標(biāo)簽: Internet program how to
上傳時(shí)間: 2014-01-13
上傳用戶(hù):yuzsu
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1