`
hcmfys
  • 浏览: 356428 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
cannot modify header information - headers already sent by (......)。 其实已经实现需要的效果了,就是这个错误信息看着不爽,网上找了很多办法,综合使用得到的解决方法是 1在页面顶部的php标签中加入ob_start(); 2在返回的信息下面加入ob_end_flush(); 这样就可以屏蔽错误信息的现实了 另外转一下其他人的方法,也许在其他情况下也会有效 If you got this message: "Warning: Cannot modify header information - headers ...
使用php smart 编写php 比较清晰的代码流程   <? $link=mysql_connect("localhost","root","123456") or die("conenction error"); mysql_select_db("mysql",$link); $result=mysql_query("show tables ",$link); $couts= mysql_num_fields($result); /* while( ...
将mysql安装到指定目录,如我的是d:/mysql 如下载的是非安装的mysql压缩包,直接解压到指定目录就可以了 然后点击D:\mysql\bin\winmysqladmin.exe这个文件 其中D:\mysql是你的mysql安装目录 输入winmysqladmin的初始用户、密码 (注:这不是mysql里的用户、密码)随便填不必在意 确定之后你的右下角任务的启动栏会出现一个红绿灯的图标,红灯亮代表服务停止,绿灯亮代表服务正常,左击这个图标->winnt->install the service 安装此服务 再左击这个图标->winnt->start the ser ...
function showPages(name) { //初始化属性 this.name = name; //对象名称 this.page = 1; //当前页数 this.pageCount = 1; //总页数 this.argName = 'page'; //参数名 this.showTimes = 1; //打印次数 } showPages.prototype.getPage = function(){ //丛url获得当前页数,如果变量重复只获取最后一个 var args = location.search; v ...
<? require 'libs/Smarty.class.php'; $smarty = new Smarty(); $smarty->template_dir="theme/html"; $smarty->compile_dir="theme/cache"; //$smarty->config_dir="theme/cache"; //$smarty->cache_dir ="theme/cache"; //$smarty->compile_check ...

php apache

    博客分类:
  • php
LoadModule  php5_module d:/php/php5apache2_2.dllAddType application/x-httpd-php .php
  string dir = SysSetting.WaveFileDir; string fullPath = string.Format("{0}/{1}", dir, WebFileUtil.GetFilePathByName(fileName)); string fullPathUrl = string.Format("{0}/{1}", SysSetting.WaveFileUrl, WebFileUtil.GetFilePathByName(fileName)); Response.ContentType = "appli ...
1. CString 转 wchar_t CString path = "asdf"; wchar_t wstr[256] = path.AllocSysString(); 或者: wchar_t wcstring[256]; MultiByteToWideChar(CP_ACP,0,path,-1,wcstring,256); 2. wchar_t转CString WideCharToMultiByte(CP_ACP,0,wcstring,256,path.GetBuffer(0),256,NULL,NULL); path.ReleaseBuffer(0); ...
  /** * @(#)GisApp.java * hcmfys@163.com * GisApp application * @author * @version 1.00 2010/7/25 */ import com.mapinfo.beans.tools.*; import com.mapinfo.beans.vmapj.VisualMapJ; import com.mapinfo.mapj.LabelProperties; import com.mapinfo.mapj.Layer; import com.mapinfo.mapj.Layers; ...
CListCtrl 风格设置: DWORD dwStyle = m_ListCtrl.GetExtendedStyle(); dwStyle |= LVS_EX_FULLROWSELECT; //选中某行使整行高亮(只适用与report风格的listctrl) dwStyle |= LVS_EX_GRIDLINES; //网格线(只适用与report风格的listctrl) dwStyle |= LVS_EX_SUBITEMIMAGES; // 设置图片 dwStyle |= LVS_EX_ ...
昨天面试,考了几道数据内存对齐问题,现在拿来分析一下。1. 先看下面的例子:struct A{   char c1;   int i;   short s;   int j;}a;struct B{   int i;   int j;     short s;   char c1;}b;结构A没有遵守字节对齐原则(为了区分,我将它叫做对齐声明原则),结构B遵守了。我们来看看在x86上会出现什么结果。先打印出a和b的各个成员的地址。会看到a中,各个成员间的间距是4个字节。b中,i和j,j和s都间距4个字节,但是s和c1间距2个字节。所以:sizeof(a) = 16sizeof(b) = 1 ...
  一种机制,操作系统进程和线程通过它交换数据和消息。IPC 包括本地机制(如 Windows 共享内存)或网络机制(如 Windows 套接字)。   进程间通讯  一、说明进程间通讯的必要性及困难性   二、Socket的方法,对于不同 ...
#include<windows.h> #include<sql.h> #include<sqlext.h> #include<string.h> #include<iostream> #include <windef.h> using namespace std; #pragma comment (lib,"odbc32.lib") //struct tagTIME_STRUCT { SQLUSMALLINT hour; SQLUSMALLINT minute; SQLUS ...
1.TCP服务器端: #include <Winsock2.h> #include <stdio.h> #pragma comment(lib,"WS2_32.lib") void main() { WORD wVersionRequested; WSADATA wsaData; int err; wVersionRequested = MAKEWORD( 1, 1 ); err = WSAStartup( wVersionRequested, &wsaData ); if ( err ! ...
        工作时间不短了,自己感觉业绩也不少了,可是老板似乎总也视而不见,发到手的薪水还只是那么点儿。于是乎,总有些愤愤不平的,心里难免就打起了小九九,觉得老板太抠,觉得自己遭遇太不公。这时候,就该跟 ...
Global site tag (gtag.js) - Google Analytics