摘要: using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Threading;using System.IO;using Skins.Common;namespace lucy{ public partial class jiang : Skins.Common.MainForm { bool go = false; int a 阅读全文
posted @ 2011-07-26 12:50 学坏 阅读(1195) 评论(2) 推荐(0) 编辑
摘要: 1 function gostrsplit($str,$str1) { 2 //$str 数据库里面查询出来的内容 3 //$str1 要对比的项的内容 $res =false; 4 $str_array = explode(",",$str); 5 for ($j = 0; $j < count($str_array); $j++) { 6 if($str_array[$j]==$str1) 7 { 8 $res = true; 9 }10 }11 return $res;12 } 阅读全文
posted @ 2011-07-26 12:21 学坏 阅读(428) 评论(0) 推荐(0) 编辑