How does link with href parameter like “ymsgr:sendim?username” works, what kind of header does it send

你离开我真会死。 提交于 2019-12-12 02:55:44

问题


I want to make php script that replace the execution of this kind of a link:

<a href="ymsgr:sendim?tonystark">YM! Iron Man</a>

So when the php script is called/executed, it will open Yahoo Messenger application window that prepared to send IM to tonystark.

Can I use header instead? but what type of header it would be?


回答1:


The ymsgr is a custom protocol that is configured to start Yahoo Messenger, which is able to parse appropriate parameters following the ":".

This question (how do I create my own URL protocol?) may be relevant as it shows how it is possible to add custom URL protocols. The example is for Windows only but it must be a similar approach for other operating systems.

To make a story short, ymsgr: opens Yahoo Messenger because your system can recognize it and that Yahoo Messenger is its associated action.




回答2:


The ymsgr in the link is a predefined protocol on your PC. Just like http, https and ftp are protocols known to your system. If you want to create custom protocols to be handled by the pc of your visitor, you must have them install something that will add the protocol to the system. Only then will the pc know what to start.

A good example of a non-standard installed protocol is skype. The links to add a user to your skype or chat with them only works if the visiting person has Skype installed. Otherwise an error occurs on the computer; "I don't know this protocol, what to do?"

So using a header to replicate the link will not work. Simply because your PC will not understand a header; it will only understand links to protocols, as if you are opening a page (http,https), email application (mailto), ftp programme (filezilla, unless handled by browser) etc etc.



来源:https://stackoverflow.com/questions/16585808/how-does-link-with-href-parameter-like-ymsgrsendimusername-works-what-kind

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!