PHPIZE installation extension solution, how to deal with it

PHPIZE installation extension solutionThe virtual machine system is Linux, and the integrated package XAMPP is installedSince installing Redis requires PHPIZE and XAMPP does not have this,So I reinstalled PHP with the same version as XAMPP , then compile it through phpize to get redis.soand then copy it to xampp,The operation is indeed successful, Question 1: But does this have no impact? Is the redis.so obtained with the newly installed PHP reliable? Question 2: How to install phpize in xampp? I’ve run out of points to give them all, I hope the boss in the version can clear up the confusion.TANKS! ——Solution—————— —xampp contains php, full directory search: find / -name “phpize” ——Solution——————–Yes Don’t worry about running it. If the versions are consistent, there will generally be no problems. If you have high requirements for environmental stability, it is best to use yum or compile it yourself instead of installing these integrated things. ——Solution——————– Right Ah, we have already played it to this extent. Installing the integrated version is not professional enough…. Discuss If it can run Don’t worry, if the versions are consistent, there will generally be no problem. If you have high requirements for environmental stability, it is best…

Looking for guidance from PHP programming experts, how to deal with it?

Looking for guidance from PHP programming expertsI am from Chengdu and now I need to find someone to collaborate on a PHP project. I would like to find a local Chengdu person who understands PHP to work togetherIf you have any questions, please leave your contact information ( QQ, etc.) ——Solution——————– Why are you looking for a local one? . Lianyungang qq 93131408

The copycat version of PHP168 whole site system has made its debut, how to deal with it

PHP168 whole-site system copycat version makes its debutCompared with the previously officially released v6 official version, the general differences are as follows: 1. Added that when the website is closed, the administrator can still enter the background to update Label. 2. Add column navigation to the front desk, add subscription links, and display the number of contents under the column. 3. The front member center adds a member list view and supports search. 4. Add a text search switch after commenting, and you can set it to require members to comment first and then view the content 5. Add a backend to modify the comment content. 6. Add online people statistics and switch display. 7. E-commerce settings add settings to display the payment method switch. 8. Add a switch to search by entering keywords. You can click the column to search without entering keywords. 9. The tag (keyword) management interface adds a quick enable and close display, and supports display on the search page. 10. Add voice prompts for new messages on the site. 11. Add tag variable management, click the tag to edit and modify it directly. 12. Add file attribute check. 13. Add founder modifications. 14. Add tag…

PHP framework, how to deal with it

PHP FrameworkNewbie. . What framework is generally used for PHP development now? Small website, medium website, large website. It is better to develop using those frameworks respectively. ——Solution——————–If you are a novice, it is recommended to learn ci ——Solution——————–Suggestions No framework is needed! ——Solution——————– Discuss It is recommended that no framework be used! ——Solution——————– Discussion Quote: It is recommended not to use any framework! Don’t use those encapsulated database operation classes either. ——Solution——————–2 ,The words on the 3rd and 4th floors are pure nonsense and can be ignored. This is a common problem among “masters”: they are self-righteous, arrogant, and have their eyes above their heads. ——Solution——————–A Mature open source products generally do not use frameworks. If you don’t know basic PHP development, I suggest you don’t use it firstIf you know it and plan to use a framework, you can choose one to learn. For example, thinkphp, zend framework, yii, cake, ci and so on. This is mainly a personal preference ——Solution——————–A Mature open source products generally do not use frameworks. If you don’t know basic PHP development, I suggest you don’t use it firstIf you know it and plan to use a framework, you can choose one to…

PHP blog writing program, how to deal with it

PHP blog writing programWhat I want most is a program about blogging, that is, the program on this page. I have read the blogs of some websites, and they all seem to have some differences. I don’t know what content to write in them. What should be written on the main page, urgent need, ——Solution—————— —Basic functions:User registration, login, password changePublish, modify, view, delete blog postsPost comments, comment replies ——Solution——————–Blog It is a place to show your individuality. There is no and should not be a unified standardYou can do it according to the style you like. If you encounter any questions, come back and ask. ——Solution——————–Suggestion Be small and good, otherwise you will not be competitive with big blogs, and no one will come to playIt is enough to add, delete, modify and check in the early stageSlowly expand after setting up the structureBlog blog, Article processing is the most basic, otherwise forget about doing anything elseOn the homepage, just display personal information, such as avatar nameThe main part displays the microfilmed article content, and you can add some visitors on the right, etc.You can go to Everyone in Sina or QQ space can find inspiration ——Solution——————–Main It’s a…

PHP two-dimensional array sorting, how to deal with it

PHP two-dimensional array sorting$ary=array(array(“ID”=>13,”name”=>”kitty”),array(“ID”=>22,”name”=>”sony”) ,array(“ID”=>17,”name”=>”picker”));I want to adjust the order of the one-dimensional array in ascending order of ID, and the result isarray(array(” ID”=>13,”name”=>”kitty”),array(“ID”=>17,”name”=>”picker”),array(“ID”=>22,”name”=>” sony”));How should I write it? ——Solution——————– Someone asked just two days ago… PHP code $ary=array(array(“ID”=>13,”name”=>”kitty”),array(“ID”=>22,”name”=>”sony”),array(“ID”=> 17,”name”=>”picker”)); foreach ($ary as $key => $value) { $Id[$key] =$value[‘ID’]; $Name[$key] = $value[‘name’]; } array_multisort($Id, SORT_ASC,$ary); print_r($ary);

phpexcel writing skills, how to deal with it

phpexcel writing skills PHP code $objActSheet->setCellValue(‘A2’, 26); But my cell has a changing value, that is, a1, b2, c4, which are unknown. Those two variables control the area. $r represents the row, such as: a, b, c, d….$c represents the column, such as 1,2,3,4,The two are combined to determine the value to be placed. PHP code $objActSheet->setCellValue($r.$c, $r[‘value’]); Report error, when I write like this, there will be no error PHP code $objActSheet->setCellValue(‘a4’, $r[‘value’]); It seems that the variables are not handled properly. How to solve it? ? ——Solution——————–Just control the column. Column is the name of the field you need to export. ——Solution——————–What mistake?

Request | PHP configuration environment, how to deal with it

Requesting | PHP configuration environment I am a novice and want to learn PHP by myself. Please provide a configuration environment! If it is very convenient for you, you can give me some advice on where I should start! Many thanks! ——Solution——————–http://wenku.baidu.com/view/53a8503383c4bb4cf7ecd102.html ——Solution——————–Installation Baidu has more methods than this. The key is that some problems that will arise during the installation process require special attention and summary. ——Solution——————–You Direct download and installation, but the prerequisite is that it is suitable for installation with Windows operating system http://download.csdn.net/source/2558379 ——Solution——————–First Google it yourselfAsk again when you encounter actual problems

ThinkPHP framework, how to deal with it

ThinkPHP frameworkindex<?phpclass IndexAction extends Action{ public function index() { $Demo = new Model(‘thinkphp’); // Instantiate the model class print_r($Demo); $list = $Demo->select(); // Check the criticism data $this->assign(‘list’,$list ); // Template volume assignment $this->display(); // Output template }} ?> Number: {$vo.id} Title: {$vo.text} Content: { $vo.nr} Why not display the data —- –Solution——————–You can debug this yourself. If you are stupid, just print it out in a few locations. See what went wrong ——Solution——————–Runtime There are logs in the /log folder. Take a look at the sql statements inside to see what is wrong. If you still don’t know, post the logs and take a look. ——Solution——————–Most The simple method is$list = M(‘Thinkphp’)->select(); If you want to judge whether the sql is correctDirectly print echo $dao->getLastSql (); ——Solution——————–You You must first locate the error and see which variable does not have the required value. This is basic programming skills. ——Solution——————–$ vo[‘id’]$vo[‘text’]Try,, I seem to have made similar mistakes before, but forgot…

Learn PHP by yourself, how to deal with it

Self-study PHPI really want to learn PHP by myself. I feel that I learned Java in school and did not learn it solidly and not very well, so I want to learn PHP by myself and study while working. I am now working as an online editor. I have weekend breaks. How long will it take? If there are people who are engaged in PHP development, please give me some opinions and suggestions for learning. Thank you! ——Solution——————–It is very easy to learn PHP after you understand Java. You can learn the basics in a week and start writing websites. ——Solution——————–php The main things that are easy to get started with are string arrays and json. ——Solution——————–More Look at some basic things, ——Solution——————– Discussion I really want to learn PHP by myself. I feel that I learned Java in school, but I didn’t learn it solidly, and I didn’t learn it very well, so I want to learn PHP by myself and study while working. I am currently working as an online editor. I have weekends off. How long will it take? I am also engaged in PHP development. Please give me some opinions and suggestions for learning. Thank you!

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: [email protected]

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索